diff options
author | glx <glx@openttd.org> | 2008-02-28 00:17:49 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-02-28 00:17:49 +0000 |
commit | 36678c0ae8eb65bd6c678fc7860b78de7fb0121b (patch) | |
tree | 428d6f1425c2e037192d59a06318bfa7b244f29f | |
parent | e9bddd2b4737b91d28ba41a67188bc278363156f (diff) | |
download | openttd-36678c0ae8eb65bd6c678fc7860b78de7fb0121b.tar.xz |
(svn r12304) -Codechange: use IsValidTile() where it should be used
-rw-r--r-- | src/command.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.cpp b/src/command.cpp index b37222293..bb519cbd3 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -399,7 +399,7 @@ CommandCost DoCommand(TileIndex tile, uint32 p1, uint32 p2, uint32 flags, uint32 CommandProc *proc; /* Do not even think about executing out-of-bounds tile-commands */ - if (tile >= MapSize() || IsTileType(tile, MP_VOID)) { + if (!IsValidTile(tile)) { _cmd_text = NULL; return CMD_ERROR; } @@ -499,7 +499,7 @@ bool DoCommandP(TileIndex tile, uint32 p1, uint32 p2, CommandCallback *callback, int y = TileY(tile) * TILE_SIZE; /* Do not even think about executing out-of-bounds tile-commands */ - if (tile >= MapSize() || IsTileType(tile, MP_VOID)) { + if (!IsValidTile(tile)) { _cmd_text = NULL; return false; } |