1
0
Fork 0

(svn r11022) -Fix: the canal border determination did not take oil rigs into consideration.

release/0.6
rubidium 2007-08-31 19:46:45 +00:00
parent 9695727120
commit dd60e3b7dd
1 changed files with 8 additions and 6 deletions

View File

@ -26,6 +26,7 @@
#include "train.h"
#include "roadveh.h"
#include "water_map.h"
#include "industry_map.h"
#include "newgrf.h"
#include "newgrf_canal.h"
#include "misc/autoptr.hpp"
@ -363,6 +364,7 @@ static bool IsWateredTile(TileIndex tile)
}
case MP_STATION: return IsOilRig(tile) || IsDock(tile) || IsBuoy(tile);
case MP_INDUSTRY: return (GetIndustrySpec(GetIndustryType(tile))->behaviour & INDUSTRYBEH_BUILT_ONWATER) != 0;
default: return false;
}
}