send hardcoded string only when client version is below 2.9.1

This commit is contained in:
in1tiate 2021-03-15 18:20:08 -05:00
parent 64d745dc0f
commit d6b41d00d5

View File

@ -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 {