From 5f77deb1fd7f899a2bde148270d3835f6f5e5691 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Sun, 27 Oct 2024 01:21:14 +0200 Subject: [PATCH] Panel: Fix wings stoplogic (#407) * Panel: FIx wings stoplogic * do not make an expetion for `^C` let wings handle this * remove withspaces --- app/Services/Eggs/EggConfigurationService.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Services/Eggs/EggConfigurationService.php b/app/Services/Eggs/EggConfigurationService.php index 90c9427e4..85fd07cb0 100644 --- a/app/Services/Eggs/EggConfigurationService.php +++ b/app/Services/Eggs/EggConfigurationService.php @@ -64,12 +64,6 @@ class EggConfigurationService } $signal = substr($stop, 1); - if (strtoupper($signal) === 'C') { - return [ - 'type' => 'stop', - 'value' => null, - ]; - } return [ 'type' => 'signal',