Map wird nicht mehr gedreht und gespiegelt angezeigt. (Der Server vertauscht tatsächlich col und row)

This commit is contained in:
2014-05-02 09:33:38 +02:00
parent fd0e6c2fc6
commit 62e695db24
3 changed files with 11 additions and 11 deletions

View File

@@ -400,8 +400,8 @@ namespace WorldOfPeacecraft
private Tile MapMapcell (Block cellBlock)
{
CheckBlocksSize (cellBlock, 1, 1);
int x = cellBlock.GetIntValue (ValueCol);
int y = cellBlock.GetIntValue (ValueRow);
int x = cellBlock.GetIntValue (ValueRow);
int y = cellBlock.GetIntValue (ValueCol);
Block propsBlock = cellBlock.GetBlocks ().First.Value;
bool walkable = false;
bool wall = false;