fix(event): remove magic potions

This commit is contained in:
Sabe Jones
2016-01-04 11:56:34 -05:00
parent 2bbdf66d76
commit cc00602112
3 changed files with 3 additions and 3 deletions

View File

@@ -1045,7 +1045,7 @@ api.premiumHatchingPotions = {
text: t('hatchingPotionPeppermint'), text: t('hatchingPotionPeppermint'),
limited: true, limited: true,
canBuy: (function() { canBuy: (function() {
return true; return false;
}) })
} }
}; };

View File

@@ -136,7 +136,7 @@
| {{::pot.value}}  | {{::pot.value}} 
span.Pet_Currency_Gem1x.inline-gems span.Pet_Currency_Gem1x.inline-gems
li.customize-menu // li.customize-menu
menu.pets-menu!=env.t('magicHatchingPotions') + " - " + env.t('winterEventAvailability') menu.pets-menu!=env.t('magicHatchingPotions') + " - " + env.t('winterEventAvailability')
p.muted=env.t('premiumPotionNoDropExplanation') p.muted=env.t('premiumPotionNoDropExplanation')
div(ng-repeat='pot in Content.hatchingPotions', ng-if='pot.premium && pot.canBuy(user)') div(ng-repeat='pot in Content.hatchingPotions', ng-if='pot.premium && pot.canBuy(user)')

View File

@@ -42,7 +42,7 @@
ng-click='purchase("special", Content.spells.special.snowball)') ng-click='purchase("special", Content.spells.special.snowball)')
p {{::Content.spells.special.snowball.value}} p {{::Content.spells.special.snowball.value}}
span(class='shop_gold') span(class='shop_gold')
div // div
button.customize-option(class='Pet_HatchingPotion_Peppermint', button.customize-option(class='Pet_HatchingPotion_Peppermint',
popover='{{::Content.hatchingPotions.Peppermint.notes()}}', popover='{{::Content.hatchingPotions.Peppermint.notes()}}',
popover-title!=env.t("potion", {potionType: "{{::Content.hatchingPotions.Peppermint.text()}}"}), popover-title!=env.t("potion", {potionType: "{{::Content.hatchingPotions.Peppermint.text()}}"}),