summaryrefslogtreecommitdiff
path: root/src/world.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-12-01 10:09:58 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-12-01 10:09:58 +0100
commitda90ecb4c88d81568c14b060a6a05508c2b37f35 (patch)
tree8529d3ad3001a2ca0c9d6c26a37bccedb4109d6c /src/world.c
parent6615a01df56d410a17b724d42660eb9821087470 (diff)
close #33
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index bff0345..4b478e9 100644
--- a/src/world.c
+++ b/src/world.c
@@ -1147,7 +1147,7 @@ static void world_update_employee_happiness(world* world, employee* emp) {
// Pay investments daily. Run once per day.
static void world_pay_investments(world* world)
{
- ADD_EXPENSE(world, 0, expenses_from_utility, world->investments.safety/28.0f);
+ //ADD_EXPENSE(world, 0, expenses_from_utility, world->investments.safety/28.0f);
ADD_EXPENSE(world, 0, expenses_from_utility, world->investments.marketing/28.0f);
ADD_EXPENSE(world, 0, expenses_from_utility, world->investments.human_resources/28.0f);
ADD_EXPENSE(world, 0, expenses_from_utility, world->investments.training/28.0f);