Pathwalker-Klasse (Blatt 7)

This commit is contained in:
2014-04-28 15:03:46 +02:00
parent a384310766
commit 7a8df2e147
5 changed files with 104 additions and 9 deletions

View File

@@ -21,7 +21,7 @@ namespace WorldOfPeacecraft
public override string ToString()
{
return "Player: " + Id + " " + PosX + " " + PosY + " " + Desc + " " + Busy + " " + Score;
return "Player: " + Id + " " + Coord.X + " " + Coord.Y + " " + Desc + " " + Busy + " " + Score;
}
}
}