Fix accidental typo

This commit is contained in:
Joscha 2016-05-27 04:07:06 +02:00
parent 361e47cf3b
commit 84ad3ee74e

View file

@ -69,11 +69,11 @@ class InfoBot(yaboli.Bot):
elif "list" in options: elif "list" in options:
if options["list"] is True or options["list"] == "all": if options["list"] is True or options["list"] == "all":
clients = self.room.s clients = self.room.get_sessions() + [self.room.session]
elif options["list"] == "people": elif options["list"] == "people":
clients = self.room.get_people() clients = self.room.get_people()
elif options["list"] == "bots": elif options["list"] == "bots":
clients = self.room.get_bots() clients = self.room.get_bots() + [self.room.session]
elif options["list"] == "lurkers": elif options["list"] == "lurkers":
clients = self.room.get_lurkers() clients = self.room.get_lurkers()