fix(content): correct availability range for Seafoam

This commit is contained in:
SabreCat
2022-07-12 10:05:02 -05:00
parent 1655e2e03a
commit 9a879d566e

View File

@@ -398,7 +398,7 @@ spells.special = {
target: 'user',
notes: t('spellSpecialSeafoamNotes'),
canOwn () {
return moment().isBetween('2021-07-06T08:00-04:00', EVENTS.summer2021.end);
return moment().isBetween('2022-07-12T08:00-04:00', EVENTS.summer2022.end);
},
cast (user, target, req) {
if (!user.items.special.seafoam) throw new NotAuthorized(t('spellNotOwned')(req.language));