DEADSOFTWARE

Add player and physics
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / WorldGen.java
index e3822d8d5f7d9c5096237c35adbcb755dfb21fca..faf98ed5e50e815b37863bd314f9922c6e83b8ef 100644 (file)
@@ -8,7 +8,7 @@ public class WorldGen {
         foreMap = new int[width][height];
         backMap = new int[width][height];
         for (int x=0; x<width; x++) {
-            for (int y=height-6; y<height; y++) {
+            for (int y=height-16; y<height; y++) {
                 foreMap[x][y]=1;
                 backMap[x][y]=1;
             }