From 01f81c71074d87cbbb942ccf4fa05e0f1c86ec83 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Sun, 14 Mar 2021 15:16:30 -0500 Subject: [PATCH] always reload theme on subtheme change --- src/commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.cpp b/src/commands.cpp index 5a3c083..38f4915 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -976,7 +976,7 @@ void AOClient::cmdSubTheme(int argc, QStringList argv) QString subtheme = argv.join(" "); for (AOClient* client : server->clients) { if (client->current_area == current_area) - client->sendPacket("ST", {subtheme}); + client->sendPacket("ST", {subtheme, "1"}); } sendServerMessageArea("Subtheme was set to " + subtheme); }