forked from mirror/OpenTTD
(svn r2) -Fix [993829] UDP Fixes (lucaspiller)
-Fix change 255/0xFF to OWNER_SPECTATOR for spectator stuff (TrueLight)
This commit is contained in:
7
ttd.h
7
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;
|
||||
|
Reference in New Issue
Block a user