summaryrefslogtreecommitdiff
path: root/network_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'network_gui.c')
-rw-r--r--network_gui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/network_gui.c b/network_gui.c
index 05ed7379d..30efc8e51 100644
--- a/network_gui.c
+++ b/network_gui.c
@@ -1490,7 +1490,9 @@ static const char *ChatTabCompletionNextItem(uint *item)
}
/* Then, try townnames */
- if (*item < (uint)MAX_CLIENT_INFO + GetTownArraySize()) {
+ /* Not that the following assumes all town indices are adjacent, ie no
+ * towns have been deleted. */
+ if (*item <= (uint)MAX_CLIENT_INFO + GetMaxTownIndex()) {
const Town *t;
FOR_ALL_TOWNS_FROM(t, *item - MAX_CLIENT_INFO) {