diff options
author | frosch <frosch@openttd.org> | 2015-02-06 21:54:19 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2015-02-06 21:54:19 +0000 |
commit | 4846c7ed6b6f024ff31c826c5ede3fbea25ef5cb (patch) | |
tree | d1e7283916a83be64d49f2b75875aed6b355e653 | |
parent | 3a270388d79e4d87e3a2461a07033d97a6cc7f63 (diff) | |
download | openttd-4846c7ed6b6f024ff31c826c5ede3fbea25ef5cb.tar.xz |
(svn r27137) -Fix (r0): Oilrig empty-tile checks were incorrect due to wrong TileIndexDiff->TileIndexDiffC conversion.
-rw-r--r-- | src/table/build_industry.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/table/build_industry.h b/src/table/build_industry.h index 9c9a28d48..5ae93bc7e 100644 --- a/src/table/build_industry.h +++ b/src/table/build_industry.h @@ -254,7 +254,6 @@ static const IndustryTileTable _tile_table_oil_rig_0[] = { MK(1, 0, 26), MK(1, 1, 27), MK(1, 2, 28), - MK(-4, -5, 255), MK(-4, -4, 255), MK(-4, -3, 255), MK(-4, -2, 255), @@ -265,9 +264,10 @@ static const IndustryTileTable _tile_table_oil_rig_0[] = { MK(-4, 3, 255), MK(-4, 4, 255), MK(-4, 5, 255), - MK(-3, 5, 255), - MK(-2, 5, 255), - MK(-1, 5, 255), + MK(-4, 6, 255), + MK(-3, 6, 255), + MK(-2, 6, 255), + MK(-1, 6, 255), MK(0, 6, 255), MK(1, 6, 255), MK(2, 6, 255), @@ -289,9 +289,9 @@ static const IndustryTileTable _tile_table_oil_rig_0[] = { MK(2, -4, 255), MK(1, -4, 255), MK(0, -4, 255), - MK(-1, -5, 255), - MK(-2, -5, 255), - MK(-3, -5, 255), + MK(-1, -4, 255), + MK(-2, -4, 255), + MK(-3, -4, 255), MK(2, 0, 255), MKEND }; |