I noticed a lot of commands that called self.status() messing up. status() returns 2 values, but you were only unpacking one.
268: d = self.status() 275: d = self.status() 282: d = self.status()
These didn't work until I changed them to d,players = self.status()
Hope this helps, hate to see this module fall to the wayside!
Log in to post a comment.
I noticed a lot of commands that called self.status() messing up.
status() returns 2 values, but you were only unpacking one.
268:
d = self.status()
275:
d = self.status()
282:
d = self.status()
These didn't work until I changed them to d,players = self.status()
Hope this helps, hate to see this module fall to the wayside!