From d6b41d00d528013189f74bb8edc335a6ade4f04e Mon Sep 17 00:00:00 2001 From: in1tiate Date: Mon, 15 Mar 2021 18:20:08 -0500 Subject: [PATCH] send hardcoded string only when client version is below 2.9.1 --- src/commands.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 5e778ee..1a4aa09 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -43,7 +43,7 @@ void AOClient::cmdLogin(int argc, QStringList argv) } else if(argv[0] == modpass) { sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." - sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI + sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC authenticated = true; } else { @@ -63,7 +63,8 @@ void AOClient::cmdLogin(int argc, QStringList argv) moderator_name = username; authenticated = true; sendPacket("AUTH", {"1"}); // Client: "You were granted the Disable Modcalls button." - sendServerMessage("Logged in as a moderator."); // for old clients, this is hardcoded to display the mod UI + if (version.release <= 2 && version.major <= 9 && version.minor <= 0) + sendServerMessage("Logged in as a moderator."); // pre-2.9.1 clients are hardcoded to display the mod UI when this string is sent in OOC sendServerMessage("Welcome, " + username); } else {