1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-21 16:42:29 +01:00

fix: remove special handling for ^C stop command (#5132)

This commit is contained in:
Daniel Barton 2024-06-30 02:31:10 +08:00 committed by GitHub
parent 2611cdf426
commit 953575ff5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,12 +64,6 @@ class EggConfigurationService
}
$signal = substr($stop, 1);
if (strtoupper($signal) === 'C') {
return [
'type' => 'stop',
'value' => null,
];
}
return [
'type' => 'signal',