fix(gala): correct dates on seeds and customizations

This commit is contained in:
SabreCat
2022-04-12 14:36:59 -05:00
parent 0ff2a8c264
commit d0c736a7a6
4 changed files with 6 additions and 6 deletions

View File

@@ -360,9 +360,9 @@ spells.special = {
previousPurchase: true,
target: 'user',
notes: t('spellSpecialShinySeedNotes'),
event: EVENTS.spring2021,
event: EVENTS.spring2022,
canOwn () {
return moment().isBetween('2021-04-06T08:00-05:00', EVENTS.spring2021.end);
return moment().isBetween('2022-04-14T08:00-05:00', EVENTS.spring2022.end);
},
cast (user, target, req) {
if (!user.items.special.shinySeed) throw new NotAuthorized(t('spellNotOwned')(req.language));