mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r3413) - Fix: Under certain conditions placing a road tile parallel under a bridge would, instead of failing, succeed and place a perpendicular piece.
This commit is contained in:
parent
d212bf205f
commit
1c4f9cf2e9
@ -428,7 +428,7 @@ int32 CmdBuildRoad(int x, int y, uint32 flags, uint32 p1, uint32 p2)
|
||||
goto do_clear;
|
||||
|
||||
/* only allow roads pertendicular to bridge */
|
||||
if ((pieces & 5U) == (ti.map5 & 0x01U))
|
||||
if (((pieces & 5U) != 0) == ((ti.map5 & 0x01U) != 0))
|
||||
goto do_clear;
|
||||
|
||||
/* check if clear land under bridge */
|
||||
|
Loading…
Reference in New Issue
Block a user