1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 08:56:39 +02:00

Fix an inverted if in the global odule.

This commit is contained in:
Sadie Powell
2024-06-03 20:02:03 +01:00
parent e71a9e2894
commit 4468fe77fa
+2 -2
View File
@@ -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;
}