1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 22:03:14 +02:00

Fix missing colon in stats and top, fix smileys and actions count. Patch by bush.

This commit is contained in:
Adam
2014-01-21 21:10:06 -05:00
parent 1027ec667a
commit 81b01bb55b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ class CSStats : public Module
else
source.Reply(_("Channel stats for %s on %s:"), display.c_str(), channel.c_str());
source.Reply(_("letters: %s, words: %s, lines: %s, smileys %s, actions: %s"),
source.Reply(_("letters: %s, words: %s, lines: %s, smileys: %s, actions: %s"),
res.Get(0, "letters").c_str(), res.Get(0, "words").c_str(),
res.Get(0, "line").c_str(), res.Get(0, "smileys").c_str(),
res.Get(0, "actions").c_str());