Labyrinth of the Minotaur A simple roguelike/RPG using a nokia 5110 screen

Dependencies:   N5110 PowerControl mbed

Revision:
30:4a03611a3d99
Parent:
29:89bc8c8aa8ac
Child:
35:2c290fa78f1d
--- a/WorldBuilder/WorldBuilder.cpp	Fri May 08 22:45:25 2015 +0000
+++ b/WorldBuilder/WorldBuilder.cpp	Sat May 09 11:46:32 2015 +0000
@@ -94,7 +94,7 @@
         }
     }
 
-    if (rand() % 2 == 0) {
+    if (rand() % 3 == 0) {
         int i = rand() % sw + sx;
         int j = rand() % sh + sy;
         map[i][j] = CHEST;