fix(shop): don't show current month's mystery set in time travelers (#13492)

This commit is contained in:
Sabe Jones
2021-11-12 10:48:07 -06:00
committed by GitHub
parent 33e35d76a4
commit b448c721d8

View File

@@ -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;
}