mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
fix(event): end Cake
This commit is contained in:
@@ -13,7 +13,7 @@ import forEach from 'lodash/forEach';
|
||||
import moment from 'moment';
|
||||
|
||||
describe('shared.ops.purchase', () => {
|
||||
const SEASONAL_FOOD = 'Cake_Base';
|
||||
const SEASONAL_FOOD = 'Meat';
|
||||
let user;
|
||||
let goldPoints = 40;
|
||||
let analytics = {track () {}};
|
||||
|
||||
@@ -356,12 +356,12 @@ api.specialMounts = stable.specialMounts;
|
||||
api.mountInfo = stable.mountInfo;
|
||||
|
||||
// For seasonal events, change these booleans:
|
||||
let canBuyNormalFood = false;
|
||||
let canDropNormalFood = false;
|
||||
let canBuyNormalFood = true;
|
||||
let canDropNormalFood = true;
|
||||
let canBuyCandyFood = false;
|
||||
let canDropCandyFood = false;
|
||||
let canBuyCakeFood = true;
|
||||
let canDropCakeFood = true;
|
||||
let canBuyCakeFood = false;
|
||||
let canDropCakeFood = false;
|
||||
|
||||
api.food = {
|
||||
Meat: {
|
||||
|
||||
Reference in New Issue
Block a user