Update help descriptions, fixed typos

Minor changes to messages returned by the help command
This commit is contained in:
ThomasWeis
2022-04-21 09:12:06 +02:00
committed by BaerbelBox
parent 113a7a0398
commit acad253dad
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ class ComicObserver(PrivMsgObserverPrototype):
@staticmethod @staticmethod
def help(): def help():
return '.comic liefer einen Link zu einem zufälligen Comic.' return '.comic - liefert einen Link zu einem zufälligen Comic'
def update_on_priv_msg(self, data: dict, connection: Connection): def update_on_priv_msg(self, data: dict, connection: Connection):
if data['message'].find('.comic') == -1: if data['message'].find('.comic') == -1:
+1 -1
View File
@@ -12,7 +12,7 @@ class GiveIceObserver(PrivMsgObserverPrototype):
@staticmethod @staticmethod
def help(): def help():
return ".ice - schenkt Eis" return ".ice - serviert Eis"
def update_on_priv_msg(self, data: dict, connection: Connection): def update_on_priv_msg(self, data: dict, connection: Connection):
if data['message'].find('.ice') == -1: if data['message'].find('.ice') == -1:
+1 -1
View File
@@ -9,7 +9,7 @@ class PartyObserver(PrivMsgObserverPrototype):
@staticmethod @staticmethod
def help(): def help():
return ".party - sorgt für Konfetti" return ".party - bringt Stimmung in den Chat"
def update_on_priv_msg(self, data: dict, connection: Connection): def update_on_priv_msg(self, data: dict, connection: Connection):
if data['message'].find('.party') == -1: if data['message'].find('.party') == -1: