| @@ -593,7 +593,7 @@ function initializeData() { | |||||
| function registerListeners() { | function registerListeners() { | ||||
| document.querySelector("#tasty-micro").addEventListener("click", (e) => { | document.querySelector("#tasty-micro").addEventListener("click", (e) => { | ||||
| const add = eatPrey(); | const add = eatPrey(); | ||||
| const text = "+" + round(add, 1) + " food"; | |||||
| const text = "+" + render(round(add, 1), 3) + " food"; | |||||
| const gulp = "*glp*"; | const gulp = "*glp*"; | ||||
| clickPopup(text, "food", [e.clientX, e.clientY]); | clickPopup(text, "food", [e.clientX, e.clientY]); | ||||
| clickPopup(gulp, "gulp", [e.clientX, e.clientY]); | clickPopup(gulp, "gulp", [e.clientX, e.clientY]); | ||||
| @@ -1051,11 +1051,11 @@ function prodSummary(id) { | |||||
| let list = []; | let list = []; | ||||
| list.push( | list.push( | ||||
| { "text": "Each " + buildings[id].name + " produces " + contributions[id].food + " food/sec" } | |||||
| { "text": "Each " + buildings[id].name + " produces " + render(belongings[id].count == 0 ? 0 : contributions[id].food / belongings[id].count, 3) + " food/sec" } | |||||
| ); | ); | ||||
| list.push( | list.push( | ||||
| { "text": "Your " + render(belongings[id].count) + " " + (belongings[id].count == 1 ? buildings[id].name + " is" : buildings[id].plural + " are") + " producing " + round(contributions[id].food, 1) + " food/sec" } | |||||
| { "text": "Your " + render(belongings[id].count) + " " + (belongings[id].count == 1 ? buildings[id].name + " is" : buildings[id].plural + " are") + " producing " + render(contributions[id].food, 3) + " food/sec" } | |||||
| ); | ); | ||||
| let percentage = round(100 * contributions[id].food / currentProductivity["food"], 2); | let percentage = round(100 * contributions[id].food / currentProductivity["food"], 2); | ||||