From 0f2f9ff78d73354750c76e160f24ed905188e2c3 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 17 Mar 2026 17:43:10 -0700 Subject: [PATCH] fix: show group kick/party command failures in UIError overlay - handleGroupUninvite: "You have been removed from the group." now shown as UIError - handlePartyCommandResult: all party errors (group full, not leader, wrong faction, ignoring you, etc.) now also shown as UIError overlay --- src/game/game_handler.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/game_handler.cpp b/src/game/game_handler.cpp index 79037c9c..19f75de4 100644 --- a/src/game/game_handler.cpp +++ b/src/game/game_handler.cpp @@ -18894,6 +18894,7 @@ void GameHandler::handleGroupUninvite(network::Packet& packet) { msg.type = ChatType::SYSTEM; msg.language = ChatLanguage::UNIVERSAL; msg.message = "You have been removed from the group."; + addUIError("You have been removed from the group."); addLocalChatMessage(msg); } @@ -18928,6 +18929,7 @@ void GameHandler::handlePartyCommandResult(network::Packet& packet) { static_cast(data.result)); } + addUIError(buf); MessageChatData msg; msg.type = ChatType::SYSTEM; msg.language = ChatLanguage::UNIVERSAL;