Skip to content

Commit 4ea5ff7

Browse files
sadiepowellsiniStar7
authored andcommitted
Fix a malformed log message in core_oper.
1 parent 7f85e20 commit 4ea5ff7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/coremods/core_oper/core_oper.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ class CoreModOper final
139139
if (hasoperclass.Get(luser))
140140
{
141141
if (!luser->FindConnectClass(true))
142-
ServerInstance->Logs.Normal("CONNECTCLASS", "Unable to find a non-operator connect class for {} ({}); keeping their existing one.");
142+
{
143+
ServerInstance->Logs.Normal("CONNECTCLASS", "Unable to find a non-operator connect class for {} ({}); keeping their existing one.",
144+
user->nick, user->GetRealUserHost());
145+
}
143146
hasoperclass.Unset(luser);
144147
}
145148
}

0 commit comments

Comments
 (0)