diff --git a/commands/implemented/command_lights_rgb_color.py b/commands/implemented/command_lights_rgb_color.py index c53cbab..0ec7641 100644 --- a/commands/implemented/command_lights_rgb_color.py +++ b/commands/implemented/command_lights_rgb_color.py @@ -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 diff --git a/commands/implemented/command_lights_rgb_color_twitch.py b/commands/implemented/command_lights_rgb_color_twitch.py index 51025cb..a2b3652 100644 --- a/commands/implemented/command_lights_rgb_color_twitch.py +++ b/commands/implemented/command_lights_rgb_color_twitch.py @@ -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):