1
0
Fork 0

(svn r21793) -Fix (r20446): broken usage of GetTileOwner() caused wrong conversion of old savegames

release/1.1
smatz 2011-01-14 18:58:03 +00:00
parent 26eb9eb7e2
commit 110e25e859
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ static void ConvertTownOwner()
/* FALL THROUGH */ /* FALL THROUGH */
case MP_TUNNELBRIDGE: case MP_TUNNELBRIDGE:
if (GetTileOwner(tile) & 0x80) SetTileOwner(tile, OWNER_TOWN); if (_m[tile].m1 & 0x80) SetTileOwner(tile, OWNER_TOWN);
break; break;
default: break; default: break;