This commit is contained in:
Simon
2018-11-27 16:02:21 -05:00
parent 54ed05b86c
commit 3776070689
18 changed files with 36 additions and 88 deletions

View File

@@ -1640,7 +1640,7 @@ var World = (function () {
}
for (var x = 0; x < size; x++) {
for (var y = 0; y < size; y++) {
var tile = Tile.createTile(terrain[y * size + x], x, y);
var tile = Tile.createTile(terrain[x * size + y], x, y);
this.tiles.push(tile);
mar.isoGroup.add(tile);
}