From 22fa9bbef934d9c5a2bad5c9925318ac6768393c Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 29 Aug 2022 14:59:21 +0200 Subject: [PATCH] Fix bug where the originID field doesn't get set when banning by name --- r5dev/vstdlib/callback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index f8204f66..3d0cc59c 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -214,7 +214,7 @@ void Host_Ban_f(const CCommand& args) { if (strcmp(args.Arg(1), pNetChan->GetName()) == NULL) // Our wanted name? { - if (g_pBanSystem->AddEntry(pNetChan->GetAddress(), pClient->GetOriginID() && !bSave)) + if (g_pBanSystem->AddEntry(pNetChan->GetAddress(), pClient->GetOriginID()) && !bSave) { bSave = true; }