(svn r2173) -Fix: [ 1179380 ] Rail now builds on reserved land. Cause by the problem that CMD_ERROR is just the highest bit of the return value, but CMD_CLEAR_LANDSCAPE returns a negative value for owned land. So the highest bit is set as well. Note to self: Finish Command Patch

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
celestar 20 years ago
parent 5a65140cb4
commit 91d44ef577

@ -374,7 +374,7 @@ int32 CmdBuildSingleRail(int x, int y, uint32 flags,
cost += ret;
ret = DoCommandByTile(tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR);
if (ret & CMD_ERROR) return ret;
if (ret == CMD_ERROR) return ret;
cost += ret;
if (flags & DC_EXEC) {

Loading…
Cancel
Save