From e565e19148c6a46892b1a049d7ad0d7db30dad1b Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 20 Nov 2024 09:02:55 +0100 Subject: [PATCH] Feat: add MuteFalseStartSoundCommand --- Command.proto | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Command.proto b/Command.proto index 0821e49..131ba5c 100644 --- a/Command.proto +++ b/Command.proto @@ -17,6 +17,9 @@ message RebootCommand {} message SayAtYourMarksCommand {} +// sets the race from FINISHED to FINISHED_MUTED, only works in FINISHED state +message MuteFalseStartSoundCommand {} + message Command { oneof command { RaceStartCommand start = 1; @@ -25,5 +28,6 @@ message Command { RaceResetCommand reset = 4; RebootCommand reboot = 5; SayAtYourMarksCommand sayAtYourMarks = 6; + MuteFalseStartSoundCommand muteFalseStartSound = 7; } } \ No newline at end of file