summaryrefslogtreecommitdiff
path: root/src/group_cmd.cpp
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-03-26 00:17:33 +0000
committerPeterN <peter@fuzzle.org>2019-03-27 06:58:48 +0000
commita393c9469545f4bd1e6e2fd1a593d35bb98f16ca (patch)
tree988930ec3e5ed0de1be7ad50c419d953757ea38c /src/group_cmd.cpp
parented9005690a77a9bdfe334f79f6df0c421975161d (diff)
downloadopenttd-a393c9469545f4bd1e6e2fd1a593d35bb98f16ca.tar.xz
Change #5977: Use specific error message when attempting to create a circular group hierarchy (3298)
Diffstat (limited to 'src/group_cmd.cpp')
-rw-r--r--src/group_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group_cmd.cpp b/src/group_cmd.cpp
index bd99aa127..3c9b3850a 100644
--- a/src/group_cmd.cpp
+++ b/src/group_cmd.cpp
@@ -449,7 +449,7 @@ CommandCost CmdAlterGroup(TileIndex tile, DoCommandFlag flags, uint32 p1, uint32
/* Ensure request parent isn't child of group.
* This is the only place that infinite loops are prevented. */
- if (GroupIsInGroup(pg->index, g->index)) return CMD_ERROR;
+ if (GroupIsInGroup(pg->index, g->index)) return_cmd_error(STR_ERROR_GROUP_CAN_T_SET_PARENT_RECURSION);
}
if (flags & DC_EXEC) {