fix(events): Spring Fling lingering

This commit is contained in:
Sabe Jones
2020-05-11 14:02:10 -05:00
parent a3b59d9254
commit 6658abbcd9
2 changed files with 4 additions and 1 deletions

View File

@@ -3621,6 +3621,9 @@ each(quests, (v, key) => {
defaults(v, {
key,
canBuy () {
if (v.event) {
return moment().isBetween(v.event.start, v.event.end);
}
return true;
},
});