summaryrefslogtreecommitdiff
path: root/src/misc_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-07-17 20:13:01 +0000
committerrubidium <rubidium@openttd.org>2008-07-17 20:13:01 +0000
commitd06529ef4d84ce90c90ed560a6b2f3525880c40e (patch)
treeca5029fca4c5aee49145e4bd3e3f0f81df8ccabc /src/misc_cmd.cpp
parentc2d2f817de7ec5f4afd76af2de765ac411cdf3c2 (diff)
downloadopenttd-d06529ef4d84ce90c90ed560a6b2f3525880c40e.tar.xz
(svn r13719) -Codechange: rename IsValidPlayer to IsValidPlayerID in line with all other structs/classes that are in a pool.
Diffstat (limited to 'src/misc_cmd.cpp')
-rw-r--r--src/misc_cmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc_cmd.cpp b/src/misc_cmd.cpp
index 6c4f2f9f7..c8408ee85 100644
--- a/src/misc_cmd.cpp
+++ b/src/misc_cmd.cpp
@@ -35,7 +35,7 @@ CommandCost CmdSetPlayerFace(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
{
PlayerFace pf = (PlayerFace)p2;
- if (!IsValidPlayerFace(pf)) return CMD_ERROR;
+ if (!IsValidPlayerIDFace(pf)) return CMD_ERROR;
if (flags & DC_EXEC) {
GetPlayer(_current_player)->face = pf;
@@ -366,7 +366,7 @@ CommandCost CmdGiveMoney(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
/* You can only transfer funds that is in excess of your loan */
if (p->player_money - p->current_loan < amount.GetCost() || amount.GetCost() <= 0) return CMD_ERROR;
- if (!_networking || !IsValidPlayer((PlayerID)p2)) return CMD_ERROR;
+ if (!_networking || !IsValidPlayerID((PlayerID)p2)) return CMD_ERROR;
if (flags & DC_EXEC) {
/* Add money to player */