station_cmd.c
changeset 4850 b4e9be22945f
parent 4848 56549aa3e234
child 4873 7cb19235cf60
--- a/station_cmd.c	Sat Oct 14 22:22:48 2006 +0000
+++ b/station_cmd.c	Sat Oct 14 22:31:18 2006 +0000
@@ -1024,7 +1024,7 @@
 		if (st == NULL) return CMD_ERROR;
 
 		st->town = ClosestTownFromTile(tile_org, (uint)-1);
-		if (_current_player < MAX_PLAYERS && flags & DC_EXEC)
+		if (IsValidPlayer(_current_player) && (flags & DC_EXEC))
 			SETBIT(st->town->have_ratings, _current_player);
 
 		if (!GenerateStationName(st, tile_org, 0)) return CMD_ERROR;
@@ -1452,7 +1452,7 @@
 
 		FindRoadStopSpot(type, st, &currstop, &prev);
 
-		if (_current_player < MAX_PLAYERS && flags & DC_EXEC) {
+		if (IsValidPlayer(_current_player) && (flags & DC_EXEC)) {
 			SETBIT(t->have_ratings, _current_player);
 		}
 
@@ -1698,7 +1698,7 @@
 
 		st->town = t;
 
-		if (_current_player < MAX_PLAYERS && flags & DC_EXEC)
+		if (IsValidPlayer(_current_player) && (flags & DC_EXEC))
 			SETBIT(t->have_ratings, _current_player);
 
 		st->sign.width_1 = 0;
@@ -1859,10 +1859,8 @@
 {
 	TileIndex tile;
 
-	if (_current_player >= MAX_PLAYERS) {
-		/* XXX: strange stuff */
-		return_cmd_error(INVALID_STRING_ID);
-	}
+	/* XXX: strange stuff */
+	if (!IsValidPlayer(_current_player))  return_cmd_error(INVALID_STRING_ID);
 
 	tile = st->dock_tile;
 
@@ -1967,7 +1965,7 @@
 
 		st->town = t = ClosestTownFromTile(tile, (uint)-1);
 
-		if (_current_player < MAX_PLAYERS && flags&DC_EXEC)
+		if (IsValidPlayer(_current_player) && (flags & DC_EXEC))
 			SETBIT(t->have_ratings, _current_player);
 
 		st->sign.width_1 = 0;
@@ -2044,7 +2042,7 @@
 	PlayerID owner = GetTileOwner(ti->tile);
 	uint32 palette;
 
-	if (owner < MAX_PLAYERS) {
+	if (IsValidPlayer(owner)) {
 		palette = PLAYER_SPRITE_COLOR(owner);
 	} else {
 		// Some stations are not owner by a player, namely oil rigs
@@ -2400,7 +2398,7 @@
 	Station *st;
 
 	FOR_ALL_STATIONS(st) {
-		if (st->owner < MAX_PLAYERS) DeleteStation(st);
+		if (IsValidPlayer(st->owner)) DeleteStation(st);
 	}
 }
 
@@ -2448,8 +2446,7 @@
 				(rating += 13, true);
 			}
 
-			if (st->owner < MAX_PLAYERS && HASBIT(st->town->statues, st->owner))
-				rating += 26;
+			if (IsValidPlayer(st->owner) && HASBIT(st->town->statues, st->owner)) rating += 26;
 
 			{
 				byte days = ge->days_since_pickup;