diff --git a/package-lock.json b/package-lock.json index ec50e09ada..72b0217cef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "habitica", - "version": "4.208.0", + "version": "4.208.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 235a2657dd..2b539a48f0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "habitica", "description": "A habit tracker app which treats your goals like a Role Playing Game.", - "version": "4.208.0", + "version": "4.208.1", "main": "./website/server/index.js", "dependencies": { "@babel/core": "^7.15.5", diff --git a/website/common/script/content/spells.js b/website/common/script/content/spells.js index 37a9a7c240..63c81a17b9 100644 --- a/website/common/script/content/spells.js +++ b/website/common/script/content/spells.js @@ -325,7 +325,7 @@ spells.special = { target: 'user', notes: t('spellSpecialSpookySparklesNotes'), canOwn () { - return false; + return moment().isBetween('2021-10-12T08:00-04:00', EVENTS.fall2021.end); }, cast (user, target, req) { if (!user.items.special.spookySparkles) throw new NotAuthorized(t('spellNotOwned')(req.language)); diff --git a/website/common/script/libs/shops-seasonal.config.js b/website/common/script/libs/shops-seasonal.config.js index 9a5562abec..51501499c5 100644 --- a/website/common/script/libs/shops-seasonal.config.js +++ b/website/common/script/libs/shops-seasonal.config.js @@ -37,9 +37,9 @@ export default { } : {}, - availableSpells: SHOP_OPEN && moment().isBefore('2021-07-06T08:00-04:00') + availableSpells: SHOP_OPEN && moment().isBetween('2021-10-12T08:00-04:00', CURRENT_EVENT.end) ? [ - 'seafoam', + 'spookySparkles', ] : [],