This commit is contained in:
2021-03-23 18:37:43 +08:00
parent f8b4e7d8da
commit bf9b3559c4
+9 -6
View File
@@ -198,13 +198,16 @@ class Response extends HttpService
{ {
$result = Help::toString($result); $result = Help::toString($result);
$string = PHP_EOL . 'Command Result: ' . PHP_EOL . PHP_EOL; $string = PHP_EOL . 'Command Result: ' . PHP_EOL . PHP_EOL;
if (empty($result)) {
$string .= 'success!' . PHP_EOL . PHP_EOL; if (!str_contains($result, 'Event::rshutdown(): Event::wait()')) {
} else { if (empty($result)) {
$string .= $result . PHP_EOL . PHP_EOL; $string .= 'success!' . PHP_EOL . PHP_EOL;
} else {
$string .= $result . PHP_EOL . PHP_EOL;
}
$string .= 'Command End!' . PHP_EOL . PHP_EOL;
print_r($string);
} }
$string .= 'Command End!' . PHP_EOL . PHP_EOL;
print_r($string);
$event = Snowflake::app()->getEvent(); $event = Snowflake::app()->getEvent();
$event->trigger('CONSOLE_END'); $event->trigger('CONSOLE_END');