mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
fix(gala): correct seasonal shop quests/spell
This commit is contained in:
parent
a03d265cd3
commit
f8ba191eea
1 changed files with 6 additions and 3 deletions
|
|
@ -36,14 +36,17 @@ export default {
|
|||
}
|
||||
: {},
|
||||
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2023-01-09T08:00-04:00', CURRENT_EVENT.end)
|
||||
availableSpells: CURRENT_EVENT && moment().isBetween('2024-01-09T08:00-04:00', CURRENT_EVENT.end)
|
||||
? [
|
||||
'snowball',
|
||||
]
|
||||
: [],
|
||||
|
||||
availableQuests: CURRENT_EVENT && moment().isBetween('2023-01-09T08:00-04:00', CURRENT_EVENT.end) // 2024-01-09
|
||||
? []
|
||||
availableQuests: CURRENT_EVENT && moment().isBetween(CURRENT_EVENT.start, CURRENT_EVENT.end)
|
||||
? [
|
||||
'evilsanta',
|
||||
'evilsanta2',
|
||||
]
|
||||
: [],
|
||||
|
||||
featuredSet: 'winter2019PoinsettiaSet',
|
||||
|
|
|
|||
Loading…
Reference in a new issue