diff options
author | dominik <dominik@openttd.org> | 2004-12-19 22:17:27 +0000 |
---|---|---|
committer | dominik <dominik@openttd.org> | 2004-12-19 22:17:27 +0000 |
commit | f5c99c09db91e71cdfd7cfa5a89b8605b14a1bf6 (patch) | |
tree | 896d8f0a53d344648ee58535f4e379414ccbde2e | |
parent | 7a82b777bf6dea3ecd0bf7764bd59636af1d5fc8 (diff) | |
download | openttd-f5c99c09db91e71cdfd7cfa5a89b8605b14a1bf6.tar.xz |
(svn r1178) Fix: Error message for building canals on slopes is correct
-rw-r--r-- | water_cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/water_cmd.c b/water_cmd.c index 3e04e1491..04d6cc2c5 100644 --- a/water_cmd.c +++ b/water_cmd.c @@ -203,7 +203,7 @@ int32 CmdBuildCanal(int x, int y, uint32 flags, uint32 p1, uint32 p2) ret = 0; th = GetTileSlope(tile, NULL); if(th!=0) - return_cmd_error(STR_1000_LAND_SLOPED_IN_WRONG_DIRECTION); + return_cmd_error(STR_0007_FLAT_LAND_REQUIRED); // can't make water of water! if (IS_TILETYPE(tile, MP_WATER)) { |