소스 검색

greeting: show clients_unique instead of clients_sum

Helge Jung 9 년 전
부모
커밋
63cef0d5aa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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[?!]?')