From 4468fe77fa363ff82e408cd4b97667c559639733 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 3 Jun 2024 20:02:03 +0100 Subject: [PATCH] Fix an inverted if in the global odule. --- modules/global/global.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/global/global.cpp b/modules/global/global.cpp index b5c5a4a31..ef8bb0f64 100644 --- a/modules/global/global.cpp +++ b/modules/global/global.cpp @@ -153,9 +153,9 @@ public: } if (server) - this->ServerGlobal(sender, Servers::GetUplink(), true, line); - else this->ServerGlobal(sender, server, false, line); + else + this->ServerGlobal(sender, Servers::GetUplink(), true, line); return true; }