summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-10-16 20:44:59 +0000
committerglx <glx@openttd.org>2007-10-16 20:44:59 +0000
commit28050e6e6db87a5195bf4c4b5f252ab74f7a2c6f (patch)
tree56f19e93fe0a3a21de5f1e97bb55247ca86f941f
parentba7c595d846245659c569e0510c3642e88d6992c (diff)
downloadopenttd-28050e6e6db87a5195bf4c4b5f252ab74f7a2c6f.tar.xz
(svn r11277) -Fix (r8498): the check for ghost station (on water industries) always removed station for non-oilrig
-rw-r--r--src/openttd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index af3360b78..64322adf7 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -1448,9 +1448,9 @@ bool AfterLoadGame()
* an oil rig which got shut down, but not completly removed from
* the map
*/
- TileIndex t1 = TILE_ADDXY(t, 1, 0);
+ TileIndex t1 = TILE_ADDXY(t, 0, 1);
if (IsTileType(t1, MP_INDUSTRY) &&
- GetIndustryGfx(t1) == GFX_OILRIG_3) {
+ GetIndustryGfx(t1) == GFX_OILRIG_1) {
/* The internal encoding of oil rigs was changed twice.
* It was 3 (till 2.2) and later 5 (till 5.1).
* Setting it unconditionally does not hurt.