mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
fix(event): disable buying Santa quests
This commit is contained in:
parent
d4c99b6db6
commit
4d39861b51
1 changed files with 2 additions and 2 deletions
|
|
@ -700,7 +700,7 @@ api.quests = {
|
|||
},
|
||||
evilsanta: {
|
||||
canBuy: (function() {
|
||||
return true;
|
||||
return false;
|
||||
}),
|
||||
text: t('questEvilSantaText'),
|
||||
notes: t('questEvilSantaNotes'),
|
||||
|
|
@ -726,7 +726,7 @@ api.quests = {
|
|||
},
|
||||
evilsanta2: {
|
||||
canBuy: (function() {
|
||||
return true;
|
||||
return false;
|
||||
}),
|
||||
text: t('questEvilSanta2Text'),
|
||||
notes: t('questEvilSanta2Notes'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue