master updates #26

Merged
alex_orid merged 21 commits from master into db-module 2021-04-16 02:08:25 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d1d90b4ceb - Show all commits

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):