Skip to content
Snippets Groups Projects
Commit 24640b50 authored by brickode's avatar brickode
Browse files

Formatting changes

parent 7709c778
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* @param {App.Entity.SlaveState} slave * @param {App.Entity.SlaveState} slave
* @returns {number} * @returns {number}
*/ */
window.foodAmount = function (slave) { window.foodAmount = function(slave) {
let food = 400; // kg / food produced by base slave / week let food = 400; // kg / food produced by base slave / week
if (!slave) { if (!slave) {
return null; return null;
...@@ -53,7 +53,7 @@ window.foodAmount = function (slave) { ...@@ -53,7 +53,7 @@ window.foodAmount = function (slave) {
* @param {App.Entity.SlaveState} slave * @param {App.Entity.SlaveState} slave
* @returns {number} * @returns {number}
*/ */
window.farmShowsIncome = function (slave) { window.farmShowsIncome = function(slave) {
// TODO: incorporate farmyardRestraints // TODO: incorporate farmyardRestraints
let arcology = V.arcologies[0]; let arcology = V.arcologies[0];
let cash = 100; // TODO: this is just a placeholder let cash = 100; // TODO: this is just a placeholder
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment