(svn r13996) -Fix (r13845): Oilrigs from pre r13838 save games can have unknown water class.
authorfrosch
Mon, 04 Aug 2008 18:54:19 +0000
changeset 9852 a4ff032669c6
parent 9851 20680f5b9c3a
child 9853 1fa928bd5771
(svn r13996) -Fix (r13845): Oilrigs from pre r13838 save games can have unknown water class.
src/station_cmd.cpp
--- a/src/station_cmd.cpp	Mon Aug 04 18:27:54 2008 +0000
+++ b/src/station_cmd.cpp	Mon Aug 04 18:54:19 2008 +0000
@@ -2221,7 +2221,7 @@
 	if (t == NULL || t->seq == NULL) t = &_station_display_datas[GetStationType(ti->tile)][GetStationGfx(ti->tile)];
 
 
-	if (IsBuoy(ti->tile) || IsDock(ti->tile) || IsOilRig(ti->tile)) {
+	if (IsBuoy(ti->tile) || IsDock(ti->tile) || (IsOilRig(ti->tile) && GetWaterClass(ti->tile) != WATER_CLASS_INVALID)) {
 		if (ti->tileh == SLOPE_FLAT) {
 			DrawWaterClassGround(ti);
 		} else {