summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2011-11-11 18:01:41 +0000
committeryexo <yexo@openttd.org>2011-11-11 18:01:41 +0000
commitbdc4734f65d05ebd6c864662c88b0459f97e30e5 (patch)
treedb90cacdb26d8536b54c4daa6a17480757933af2 /src
parent72b1fffe825c35701e3f1aa6389c8cc4a99b9155 (diff)
downloadopenttd-bdc4734f65d05ebd6c864662c88b0459f97e30e5.tar.xz
(svn r23188) -Fix (r23168): fences on steep slopes were broken
Diffstat (limited to 'src')
-rw-r--r--src/table/clear_land.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table/clear_land.h b/src/table/clear_land.h
index a6554802f..345f055c6 100644
--- a/src/table/clear_land.h
+++ b/src/table/clear_land.h
@@ -38,14 +38,14 @@ static const byte _fence_mod_by_tileh_ne[32] = {
0, 0, 0, 0, 4, 4, 4, 4,
2, 2, 2, 2, 0, 0, 0, 0,
0, 0, 0, 0, 4, 4, 4, 4,
- 2, 2, 2, 2, 0, 0, 0, 0,
+ 2, 2, 2, 2, 0, 2, 4, 0,
};
static const byte _fence_mod_by_tileh_nw[32] = {
1, 5, 1, 5, 1, 5, 1, 5,
3, 1, 3, 1, 3, 1, 3, 1,
1, 5, 1, 5, 1, 5, 1, 5,
- 3, 1, 3, 1, 3, 1, 3, 1,
+ 3, 1, 3, 5, 3, 3, 3, 1,
};