mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-17 11:32:16 +00:00
fix(quests): egg availability, again
This commit is contained in:
parent
39fc6248d6
commit
c762146ec9
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ const QUEST_SEASONAL = {
|
|||
egg: {
|
||||
event: CURRENT_EVENT && CURRENT_EVENT.season === 'spring' ? CURRENT_EVENT : null,
|
||||
canBuy () {
|
||||
return this.event && moment().isBetween('2024-04-18T08:00-05:00', this.event.end);
|
||||
return this.event && moment().isBetween('2024-03-26T08:00-04:00', this.event.end);
|
||||
},
|
||||
text: t('questEggHuntText'),
|
||||
notes: t('questEggHuntNotes'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue