fixed lights help

This commit is contained in:
Alex Orid 2021-04-11 23:05:23 -04:00
parent 5ccf36b1bd
commit d1d90b4ceb
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ class CommandLights(AbstractCommand, metaclass=ABCMeta):
def __init__(self):
super().__init__(CommandLights.command, n_args=3, command_type=AbstractCommand.CommandType.Praxis)
self.help = ["This command allows you to modify the lights via the Lights_Module.",
"\nExample:","lights \"SCENE\"","lights \"COLOR\"","lights \"R G B\"","lights \"1 0.5 0\""]
"\nExample:","lights \"SCENE\"","lights \"COLOR\"","lights \"R\" \"G\" \"B\"","lights \"1\" \"0.5\" \"0\""]
def do_command(self, bot, user_message):
tempBool = True

View File

@ -16,7 +16,7 @@ class CommandLights(AbstractCommand, metaclass=ABCMeta):
def __init__(self):
super().__init__(CommandLights.command, n_args=3, command_type=AbstractCommand.CommandType.TWITCH)
self.help = ["This command allows you to modify the lights via the Lights_Module.",
"\nExample:","!lights \"SCENE\"","!lights \"COLOR\"","!lights \"R G B\"","!lights \"1 0.5 0\""]
"\nExample:","!lights \"SCENE\"","!lights \"COLOR\"","!lights \"R\" \"G\" \"B\"","!lights \"1\" \"0.5\" \"0\""]
def do_command(self, bot, twitch_message):