1
0
Fork 0

(svn r1366) -Fix: [1093186] rough land in snow upon dying of tree

release/0.4.5
darkvater 2005-01-04 00:53:52 +00:00
parent 3a48ab4c54
commit cdfb3d5113
1 changed files with 2 additions and 2 deletions

View File

@ -553,9 +553,9 @@ static void TileLoop_Trees(uint tile)
m5 = 3;
m2 = _map2[tile];
if ((m2&0x30) != 0) {
if ((m2&0x30) != 0) { // on snow/desert or rough land
m5 = (m2 >> 6) | 0x10;
if (m2 != 0x20)
if ((m2&0x30) != 0x20) // if not on snow/desert, then on rough land
m5 = 7;
}
_map_owner[tile] = OWNER_NONE;