From dd7daa0c88380b039bc769b606c8d73cae19d0cb Mon Sep 17 00:00:00 2001 From: in1tiate Date: Fri, 12 Mar 2021 22:48:44 -0600 Subject: [PATCH] fix /mods --- src/commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 8b87a42..d4d3884 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -781,8 +781,8 @@ void AOClient::cmdMods(int argc, QStringList argv) if (client->authenticated) { entries << "---"; if (auth_type != "simple") - entries << "Moderator: " + moderator_name; - entries << "OOC name: " + ooc_name; + entries << "Moderator: " + client->moderator_name; + entries << "OOC name: " + client->ooc_name; entries << "ID: " + QString::number(client->id); entries << "Area: " + QString::number(client->current_area); entries << "Character: " + client->current_char;