fix(potions): correct Bronze/Silver string

fixes #11395
This commit is contained in:
Sabe Jones
2019-10-10 14:10:07 -05:00
parent ecc1c0bba3
commit 4b0ce7ffc1
2 changed files with 3 additions and 0 deletions

View File

@@ -298,6 +298,7 @@
"hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.",
"premiumPotionAddlNotes": "Not usable on quest pet eggs. Available for purchase until <%= date(locale) %>.",
"premiumPotionUnlimitedNotes": "Not usable on quest pet eggs.",
"foodMeat": "Meat",
"foodMeatThe": "the Meat",

View File

@@ -198,6 +198,7 @@ let premium = {
text: t('hatchingPotionBronze'),
limited: true,
canBuy: hasQuestAchievementFunction('bronze'),
_addlNotes: t('premiumPotionUnlimitedNotes'),
},
Watery: {
value: 2,
@@ -210,6 +211,7 @@ let premium = {
text: t('hatchingPotionSilver'),
limited: true,
canBuy: hasQuestAchievementFunction('silver'),
_addlNotes: t('premiumPotionUnlimitedNotes'),
},
Shadow: {
value: 2,