Balancing / Fixed editor/map bugs

This commit is contained in:
Anuken
2018-09-15 11:10:07 -04:00
parent df6382a1ca
commit e284d9de8e
4 changed files with 5 additions and 9 deletions

View File

@@ -99,7 +99,7 @@ public class WorldGenerator{
int pos = multiblocks.get(i);
int x = pos % tiles.length;
int y = pos / tiles[0].length;
int y = pos / tiles.length;
Block result = tiles[x][y].block();
Team team = tiles[x][y].getTeam();