Skip to content

Commit

Permalink
fix: NetMessage after re-invite
Browse files Browse the repository at this point in the history
not sure why this ever worked
  • Loading branch information
ThisAMJ committed Aug 7, 2024
1 parent 8a30ff3 commit 46797ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/Server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ DETOUR_COMMAND(Server::say) {
auto clientidx = UTIL_GetCommandClientIndex();
if (args.ArgC() != 2 ||
Utils::StartsWith(args[1], "&^") ||
!strcmp(args[1], "\"" SAR_MSG_HELLO "\"") ||
!strcmp(args[1], SAR_MSG_HELLO) ||
!networkManager.HandleGhostSay(args[1], clientidx)) {
g_wasChatType = 0;
Server::say_callback(args);
Expand Down

0 comments on commit 46797ba

Please sign in to comment.