From 9a879d566e141db23a8fc701c648f106120590df Mon Sep 17 00:00:00 2001 From: SabreCat Date: Tue, 12 Jul 2022 10:05:02 -0500 Subject: [PATCH] fix(content): correct availability range for Seafoam --- website/common/script/content/spells.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/common/script/content/spells.js b/website/common/script/content/spells.js index eef0c26ace..d6d330e651 100644 --- a/website/common/script/content/spells.js +++ b/website/common/script/content/spells.js @@ -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));