changeset 5056:314912c1e717 draft

(svn r7109) -Codechange: use map accessor IsClearWaterTile
author belugas <belugas@openttd.org>
date Wed, 08 Nov 2006 05:05:35 +0000
parents ae6047e91cdd
children 9216fbcae69f
files industry_cmd.c
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/industry_cmd.c
+++ b/industry_cmd.c
@@ -24,6 +24,7 @@
 #include "table/build_industry.h"
 #include "genworld.h"
 #include "date.h"
+#include "water_map.h"
 
 void ShowIndustryViewWindow(int industry);
 void BuildOilRig(TileIndex tile);
@@ -1158,11 +1159,11 @@
 			if (!EnsureNoVehicle(cur_tile)) return false;
 
 			if (type == IT_OIL_RIG)  {
-				if (!IsTileType(cur_tile, MP_WATER) || _m[cur_tile].m5 != 0) return false;
+				if (!IsClearWaterTile(cur_tile)) return false;
 			} else {
 				Slope tileh;
 
-				if (IsTileType(cur_tile, MP_WATER) && _m[cur_tile].m5 == 0) return false;
+				if (IsClearWaterTile(cur_tile)) return false;
 
 				tileh = GetTileSlope(cur_tile, NULL);
 				if (IsSteepSlope(tileh)) return false;