diff options
Diffstat (limited to 'modules/commands/cs_status.cpp')
-rw-r--r-- | modules/commands/cs_status.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_status.cpp b/modules/commands/cs_status.cpp index 80ab16cc4..b8ac38f77 100644 --- a/modules/commands/cs_status.cpp +++ b/modules/commands/cs_status.cpp @@ -57,7 +57,7 @@ public: source.Reply(_("\2%s\2 has no access on \2%s\2."), nick.c_str(), ci->name.c_str()); else { - source.Reply(_("Access for \2%s\2 on \2%s\2"), nick.c_str()); + source.Reply(_("Access for \2%s\2 on \2%s\2"), nick.c_str(), ci->name.c_str()); for (unsigned i = 0; i < ag.size(); ++i) { @@ -74,7 +74,7 @@ public: if (autokick->HasFlag(AK_ISNICK)) { if (na && *autokick->nc == na->nc) - source.Reply(_("\2%s\2 is on the auto kick list (%s)."), autokick->reason.c_str()); + source.Reply(_("\2%s\2 is on the auto kick list (%s)."), na->nc->display.c_str(), autokick->reason.c_str()); } else if (u != NULL) { |