diff options
author | Adam <Adam@sigterm.info> | 2023-05-28 21:25:02 -0400 |
---|---|---|
committer | Adam <Adam@sigterm.info> | 2023-05-28 21:26:03 -0400 |
commit | 66f37139cba97f2bb2a490376ffc33f153900b6c (patch) | |
tree | 8e36db8bfb468bcac8663eb462145d6a06fece45 /modules/protocol/unreal.cpp | |
parent | 0646547c9eecc464dfc3c6fb0c7dfa9a3298a268 (diff) |
regchannels: remove dependency on no-delete-null-pointer-checks
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 4f484c603..ed4b95142 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -362,7 +362,7 @@ class UnrealIRCdProto : public IRCDProto /* Unreal does not support updating a channels TS without actually joining a user, * so we will join and part us now */ - BotInfo *bi = c->ci->WhoSends(); + BotInfo *bi = c->WhoSends(); if (!bi) ; else if (c->FindUser(bi) == NULL) |