From 8fd94a2314a334c4e8c4cd9a4e200e53b61aa414 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 15 Oct 2023 12:56:27 +0200 Subject: [PATCH] Fix: add property to determine if lane should be disabled or not --- Command.proto | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Command.proto b/Command.proto index 8d6c1f2..6455cc2 100644 --- a/Command.proto +++ b/Command.proto @@ -4,7 +4,10 @@ package ScStw; message RaceStartCommand {} -message LaneSetDisabledCommand { uint32 laneNumber = 1; } +message LaneSetDisabledCommand { + uint32 laneNumber = 1; + bool disabled = 2; +} message LaneSetFallCommand { uint32 laneNumber = 1; }