summaryrefslogtreecommitdiff
path: root/network.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-10-14 15:49:43 +0000
committerDarkvater <Darkvater@openttd.org>2006-10-14 15:49:43 +0000
commita85d679f545ea7fec03db426ec033e5e83258a91 (patch)
tree4d65683dddf832ac860c3ff0f26f99db4e9ea997 /network.c
parent94339a884d1c7eaaecc8a5963cb985ca17d3e7df (diff)
downloadopenttd-a85d679f545ea7fec03db426ec033e5e83258a91.tar.xz
(svn r6774) -Codechange: Rename the badly named OWNER_SPECTATOR to PLAYER_SPECTATOR and
put it into player.h where it belongs (instead of map.h)
Diffstat (limited to 'network.c')
-rw-r--r--network.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/network.c b/network.c
index f961e16e0..19e8fd451 100644
--- a/network.c
+++ b/network.c
@@ -108,7 +108,7 @@ byte NetworkSpectatorCount(void)
byte count = 0;
FOR_ALL_CLIENTS(cs) {
- if (DEREF_CLIENT_INFO(cs)->client_playas == OWNER_SPECTATOR) count++;
+ if (DEREF_CLIENT_INFO(cs)->client_playas == PLAYER_SPECTATOR) count++;
}
return count;
@@ -1035,7 +1035,7 @@ static void NetworkInitGameInfo(void)
ci->client_index = NETWORK_SERVER_INDEX;
if (_network_dedicated) {
- ci->client_playas = OWNER_SPECTATOR;
+ ci->client_playas = PLAYER_SPECTATOR;
} else {
ci->client_playas = _local_player + 1;
}