fix(event): disable buying Santa quests

This commit is contained in:
Sabe Jones
2017-02-21 22:16:32 +00:00
parent d4c99b6db6
commit 4d39861b51

View File

@@ -700,7 +700,7 @@ api.quests = {
}, },
evilsanta: { evilsanta: {
canBuy: (function() { canBuy: (function() {
return true; return false;
}), }),
text: t('questEvilSantaText'), text: t('questEvilSantaText'),
notes: t('questEvilSantaNotes'), notes: t('questEvilSantaNotes'),
@@ -726,7 +726,7 @@ api.quests = {
}, },
evilsanta2: { evilsanta2: {
canBuy: (function() { canBuy: (function() {
return true; return false;
}), }),
text: t('questEvilSanta2Text'), text: t('questEvilSanta2Text'),
notes: t('questEvilSanta2Notes'), notes: t('questEvilSanta2Notes'),