fix [rainbow] in msg compiler (#416)

It's unused but I saw the typo
This commit is contained in:
alex 2021-09-08 11:36:06 +01:00 committed by GitHub
parent b5eb88b9f3
commit d4219ed94c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -853,7 +853,7 @@ if __name__ == "__main__":
message.bytes += [0xFF, 0x27, 0x05] message.bytes += [0xFF, 0x27, 0x05]
elif command == "rainbow": elif command == "rainbow":
fx_stack.append(0x06) fx_stack.append(0x06)
message.bytes += [0xFF, 0x27, 0x06] message.bytes += [0xFF, 0x26, 0x06]
elif command == "/rainbow": elif command == "/rainbow":
fx_stack.pop() fx_stack.pop()
message.bytes += [0xFF, 0x27, 0x06] message.bytes += [0xFF, 0x27, 0x06]