diff options
author | Vít Šefl <vituscze@gmail.com> | 2021-06-01 17:37:39 +0200 |
---|---|---|
committer | rubidium42 <rubidium42@users.noreply.github.com> | 2021-06-01 18:26:35 +0200 |
commit | 30f5938eed1159f448b9eb2746a602a603383be1 (patch) | |
tree | 7ccd31ab229d892c60ad4bea7aa9af3686c87c4a | |
parent | c936f8b7699f194efa4939f01c31db6501d09736 (diff) | |
download | openttd-30f5938eed1159f448b9eb2746a602a603383be1.tar.xz |
Fix b791ffc6: use the correct name in CmdPlantTree
-rw-r--r-- | src/tree_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tree_cmd.cpp b/src/tree_cmd.cpp index 0ee91b4cd..e2460f3b0 100644 --- a/src/tree_cmd.cpp +++ b/src/tree_cmd.cpp @@ -448,9 +448,9 @@ CommandCost CmdPlantTree(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32 break; } - if (IsTileType(tile, MP_CLEAR)) { + if (IsTileType(current_tile, MP_CLEAR)) { /* Remove fields or rocks. Note that the ground will get barrened */ - switch (GetRawClearGround(tile)) { + switch (GetRawClearGround(current_tile)) { case CLEAR_FIELDS: case CLEAR_ROCKS: { CommandCost ret = DoCommand(current_tile, 0, 0, flags, CMD_LANDSCAPE_CLEAR); |