Map wird nicht mehr gedreht und gespiegelt angezeigt. (Der Server vertauscht tatsächlich col und row)
This commit is contained in:
@@ -6,9 +6,9 @@ namespace WorldOfPeacecraft
|
||||
{
|
||||
public Tile[,] map;
|
||||
|
||||
public Map (int height, int width)
|
||||
public Map (int width, int height)
|
||||
{
|
||||
map = new Tile[height, width];
|
||||
map = new Tile[width, height];
|
||||
}
|
||||
|
||||
public void SetTile (Tile t)
|
||||
|
||||
Reference in New Issue
Block a user