From 804f038594ccd7d12b776299038f9bc5809f90e5 Mon Sep 17 00:00:00 2001 From: darkvater Date: Tue, 10 Aug 2004 14:14:00 +0000 Subject: (svn r2) -Fix [993829] UDP Fixes (lucaspiller) -Fix change 255/0xFF to OWNER_SPECTATOR for spectator stuff (TrueLight) --- ttd.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ttd.h') diff --git a/ttd.h b/ttd.h index fa799e2df..aafb87b46 100644 --- a/ttd.h +++ b/ttd.h @@ -469,9 +469,10 @@ enum Sprites { }; enum MAP_OWNERS { - OWNER_TOWN = 0xf, // a town owns the tile - OWNER_NONE = 0x10,// nobody owns the tile - OWNER_WATER= 0x11,// "water" owns the tile + OWNER_TOWN = 0xf, // a town owns the tile + OWNER_NONE = 0x10,// nobody owns the tile + OWNER_WATER = 0x11,// "water" owns the tile + OWNER_SPECTATOR = 0xff, // spectator in MP or in scenario editor }; VARDEF bool _savegame_sort_dirty; -- cgit v1.2.3-54-g00ecf