Increase chance of battery being dropped.

This commit is contained in:
Steve 2018-03-13 08:24:53 +00:00
parent de2295efe9
commit 698535344f
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ void addRandomItems(int x, int y)
dropRandomCherry(x, y); dropRandomCherry(x, y);
} }
if (rand() % 100 < 20) if (rand() % 100 < 50)
{ {
dropBattery(x, y); dropBattery(x, y);
} }