Kirk Trombley 5 years ago
parent
commit
d954576196
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/plugins/teamspeak.py

+ 1 - 1
src/plugins/teamspeak.py

@@ -24,7 +24,7 @@ def with_error_handle(f):
 def fmt_list(nicks):
     if len(nicks) == 0:
         return "No one in teamspeak!"
-    if len(nicks):
+    if len(nicks) == 1:
         return ("Only " if random.randint(0, 1) == 0 else "Oops all ") + nicks[0]
     return "I see the following people: " + ", ".join(nicks)