Fix accidental typo
This commit is contained in:
parent
361e47cf3b
commit
84ad3ee74e
1 changed files with 2 additions and 2 deletions
|
|
@ -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()
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue