mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-22 05:44:16 +00:00
fix(shop): don't show current month's mystery set in time travelers (#13492)
This commit is contained in:
parent
33e35d76a4
commit
b448c721d8
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ const timeTravelerStore = user => {
|
|||
if (
|
||||
k === 'wondercon'
|
||||
|| ownedKeys.indexOf(v.items[0].key) !== -1
|
||||
|| (moment(k).isAfter() && moment(k).isBefore('3000-01-01'))
|
||||
|| (moment(k).add(1, 'months').isAfter() && moment(k).isBefore('3000-01-01'))
|
||||
) {
|
||||
return m;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue