mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
fix(content): bundle ends March not May
This commit is contained in:
parent
6339e9066f
commit
a24651e395
3 changed files with 3 additions and 3 deletions
|
|
@ -699,7 +699,7 @@
|
|||
"questSquirrelUnlockText": "Unlocks Squirrel Eggs for purchase in the Market",
|
||||
|
||||
"cuddleBuddiesText": "Cuddle Buddies Quest Bundle",
|
||||
"cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until May 31.",
|
||||
"cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until March 31.",
|
||||
|
||||
"aquaticAmigosText": "Aquatic Amigos Quest Bundle",
|
||||
"aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until August 31.",
|
||||
|
|
|
|||
|
|
@ -114,7 +114,7 @@ const bundles = {
|
|||
'guineapig',
|
||||
],
|
||||
canBuy () {
|
||||
return moment().isBetween('2022-03-15T08:00-04:00', '2022-05-31T20:00-04:00');
|
||||
return moment().isBetween('2022-03-15T08:00-04:00', '2022-03-31T20:00-04:00');
|
||||
},
|
||||
type: 'quests',
|
||||
value: 7,
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ const featuredItems = {
|
|||
];
|
||||
},
|
||||
quests () {
|
||||
if (moment().isBefore('2022-05-31T20:00-04:00')) {
|
||||
if (moment().isBefore('2022-03-31T20:00-04:00')) {
|
||||
return [
|
||||
{
|
||||
type: 'bundles',
|
||||
|
|
|
|||
Loading…
Reference in a new issue