diff --git a/core/src/com/dungeoncrawler/control/Controller.java b/core/src/com/dungeoncrawler/control/Controller.java index 6c422de..f067451 100644 --- a/core/src/com/dungeoncrawler/control/Controller.java +++ b/core/src/com/dungeoncrawler/control/Controller.java @@ -61,7 +61,7 @@ public class Controller extends ApplicationAdapter implements InputProcessor{ volume = 0.01f; arrows = new Entity[10]; - roomX = 13; + roomX = 10; roomY = 6; batch = new SpriteBatch(); diff --git a/core/src/com/dungeoncrawler/view/MapGenerator.java b/core/src/com/dungeoncrawler/view/MapGenerator.java index 07f920c..f527dfe 100644 --- a/core/src/com/dungeoncrawler/view/MapGenerator.java +++ b/core/src/com/dungeoncrawler/view/MapGenerator.java @@ -66,7 +66,7 @@ public class MapGenerator { Room room = l.getRooms()[x][y]; if(room != null){ - int tempX = 12; + int tempX = 9; int tempY = 5; int mapDimensionX = tempX + 2;