From f92d1cbc04fc8d9fc995f0a95ab9500b0c802329 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 24 Dec 2019 13:51:39 -0500 Subject: [PATCH] Make the food powerup give 60 seconds of food production --- constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/constants.js b/constants.js index 2373510..0c0d454 100644 --- a/constants.js +++ b/constants.js @@ -1114,10 +1114,10 @@ const powerups = { name: "Free Food", description: "Tasty!", icon: "fa-drumstick-bite", - effect: state => state.resources.food += 10000, + effect: state => state.resources.food += state.currentProductivity.food * 60, popup: (self, e) => { clickPopup("GULP!", "gulp", [e.clientX, e.clientY]); - clickPopup("+10000 food", "food", [e.clientX, e.clientY]); + clickPopup("+60 seconds of food", "food", [e.clientX, e.clientY]); } }, "free-car": {