From 3d38777ec89e2ae1f5ce6be4a3058070af7208a8 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Thu, 1 Oct 2015 14:54:52 -0400 Subject: [PATCH] fix(content): Correctly generate api.hatchingPotions --- common/script/content/index.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/script/content/index.coffee b/common/script/content/index.coffee index b70fff0add..196b25602d 100644 --- a/common/script/content/index.coffee +++ b/common/script/content/index.coffee @@ -1178,7 +1178,7 @@ _.each api.dropHatchingPotions, (pot,key) -> _.each api.premiumHatchingPotions, (pot,key) -> _.defaults pot, {key, value: 2, notes: t('hatchingPotionNotes', {potText: pot.text}), premium: true, limited: false, canBuy: (()->true)} -api.hatchingPotions = _.merge(api.dropHatchingPotions, api.premiumPotionAddlNotes) +api.hatchingPotions = _.merge(api.dropHatchingPotions, api.premiumHatchingPotions) api.pets = _.transform api.dropEggs, (m, egg) ->