Update AllSeenObserver.py

fixed command and help text
This commit is contained in:
ThomasWeis
2022-05-02 10:51:03 +02:00
parent d1adb77a33
commit f4de64d8d3
+2 -2
View File
@@ -10,11 +10,11 @@ from FaustBot.Modules.UserList import UserList
class AllSeenObserver(PrivMsgObserverPrototype): class AllSeenObserver(PrivMsgObserverPrototype):
@staticmethod @staticmethod
def cmd(): def cmd():
return [".seen"] return [".allseen"]
@staticmethod @staticmethod
def help(): def help():
return ".seen <nick> - um abzufragen wann <nick> zuletzt hier war" return ".allseen - um abzufragen, wann alle im Channel zuletzt aktiv waren (Nur von Moderatoren nutzbar)"
def __init__(self, user_list: UserList): def __init__(self, user_list: UserList):
super().__init__() super().__init__()