Skip to content

Commit 953575f

Browse files
authored
fix: remove special handling for ^C stop command (pterodactyl#5132)
1 parent 2611cdf commit 953575f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

app/Services/Eggs/EggConfigurationService.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,6 @@ protected function convertStopToNewFormat(string $stop): array
6464
}
6565

6666
$signal = substr($stop, 1);
67-
if (strtoupper($signal) === 'C') {
68-
return [
69-
'type' => 'stop',
70-
'value' => null,
71-
];
72-
}
7367

7468
return [
7569
'type' => 'signal',

0 commit comments

Comments
 (0)