From 89d7fed6889c0e8fe89f227e3c98bd341df8bd5e Mon Sep 17 00:00:00 2001 From: scatterflower Date: Tue, 29 Sep 2020 02:54:13 -0500 Subject: [PATCH] fix improper ooc name in areas list --- src/commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.cpp b/src/commands.cpp index 38ade98..1dfc187 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -176,7 +176,7 @@ QStringList AOClient::buildAreaList(int area_idx) if (client->current_area == area_idx) { QString char_entry = client->current_char; if (authenticated) - char_entry += " (" + client->getIpid() + "): " + ooc_name; + char_entry += " (" + client->getIpid() + "): " + client->ooc_name; entries.append(char_entry); } }