1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 20:46:39 +02:00

Always use source name when logging server kicks

This commit is contained in:
Adam
2015-01-10 15:29:19 -05:00
parent 1f02278a1c
commit 969cd5dd6c
+1 -1
View File
@@ -746,7 +746,7 @@ void Channel::KickInternal(const MessageSource &source, const Anope::string &nic
if (sender)
Log(sender, this, "kick") << "kicked " << target->nick << " (" << reason << ")";
else
Log(target, this, "kick") << "was kicked by " << source.GetSource() << " (" << reason << ")";
Log(target, this, "kick") << "was kicked by " << source.GetName() << " (" << reason << ")";
Anope::string chname = this->name;