Browse Source

greeting: show clients_unique instead of clients_sum

Helge Jung 9 years ago
parent
commit
63cef0d5aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/ffpb_fun.py

+ 1 - 1
modules/ffpb_fun.py

@@ -31,7 +31,7 @@ def ffpb_greeting(bot, trigger):
         'Hi {0}, bist du einer der {2} Clients an unseren {1} Knoten?',
         'Hey {0}, schön dich zu sehen. Gerade sind übrigens {1} Knoten mit {2} Clients online.',
         '{1} Knoten online, {2} Clients im Netz und {0} gibt uns die Ehre - Herzlich Willkommen :)'))
-    bot.say(greeting.format(trigger.nick, stats["nodes_active"], stats["clients"]))
+    bot.say(greeting.format(trigger.nick, stats["nodes_active"], stats["clients_unique"]))
 
 
 @willie.module.rule(r'(?i)(alles )?fake[?!]?')