From 227cebb0be5de7791c72acf38b28f871a425550e Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 14 Oct 2006 15:43:37 +0000 Subject: (svn r6772) -Codechange: Do not abuse OWNER_SPECTATOR as the "owner" of the industry for the minimap. This also saves us from having this huge _owner_colors table. --- map.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'map.h') diff --git a/map.h b/map.h index 05f758f6d..60ac5e814 100644 --- a/map.h +++ b/map.h @@ -71,6 +71,8 @@ typedef enum Owner { OWNER_TOWN = 0x0F, // a town owns the tile OWNER_NONE = 0x10, // nobody owns the tile OWNER_WATER = 0x11, // "water" owns the tile + OWNER_END = 0x12, + OWNER_SPECTATOR = 0xFF, // spectator in MP or in scenario editor } Owner; -- cgit v1.2.3-54-g00ecf