From 1db52de45d992c98d84c9b8501b56ae3e09fd645 Mon Sep 17 00:00:00 2001 From: Rachel Williams Date: Wed, 8 Feb 2017 14:14:30 -0500 Subject: [PATCH] Reordered Magic Hatching Potions, fixes issue 8465 (#8467) * Moved Royal Purple to top of list, ordered other mounts from Spring to Winter * Issue 8465, moved Royal Purple to top and arranged other pets/mounts from Spring-Winter * Fixed whitespacing mistake from previous commit * Magic Hatching Potions reordered by season --- .../common/script/content/hatching-potions.js | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js index faf1d65637..1836c57594 100644 --- a/website/common/script/content/hatching-potions.js +++ b/website/common/script/content/hatching-potions.js @@ -49,17 +49,16 @@ let drops = { }; let premium = { - Spooky: { + RoyalPurple: { value: 2, - text: t('hatchingPotionSpooky'), + text: t('hatchingPotionRoyalPurple'), limited: true, - _season: 'fall', }, - Peppermint: { + Cupid: { value: 2, - text: t('hatchingPotionPeppermint'), + text: t('hatchingPotionCupid'), limited: true, - _season: 'winter', + _season: 'valentines', }, Floral: { value: 2, @@ -73,28 +72,29 @@ let premium = { limited: true, _season: 'summer', }, + Spooky: { + value: 2, + text: t('hatchingPotionSpooky'), + limited: true, + _season: 'fall', + }, Ghost: { value: 2, text: t('hatchingPotionGhost'), limited: true, _season: 'fall', }, - RoyalPurple: { - value: 2, - text: t('hatchingPotionRoyalPurple'), - limited: true, - }, Holly: { value: 2, text: t('hatchingPotionHolly'), limited: true, _season: 'winter', }, - Cupid: { + Peppermint: { value: 2, - text: t('hatchingPotionCupid'), + text: t('hatchingPotionPeppermint'), limited: true, - _season: 'valentines', + _season: 'winter', }, };