From 698535344f903c331b094c6d23b5ad902e126105 Mon Sep 17 00:00:00 2001 From: Steve Date: Tue, 13 Mar 2018 08:24:53 +0000 Subject: [PATCH] Increase chance of battery being dropped. --- src/world/items.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/items.c b/src/world/items.c index b3a2301..2cfadcb 100644 --- a/src/world/items.c +++ b/src/world/items.c @@ -159,7 +159,7 @@ void addRandomItems(int x, int y) dropRandomCherry(x, y); } - if (rand() % 100 < 20) + if (rand() % 100 < 50) { dropBattery(x, y); }