(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.
This commit is contained in:
Darkvater
2006-10-14 15:43:37 +00:00
parent 2dcdeb985d
commit 975442040d
2 changed files with 5 additions and 3 deletions

2
map.h
View File

@@ -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;