diff --git a/app/Services/Servers/ServerConfigurationStructureService.php b/app/Services/Servers/ServerConfigurationStructureService.php
index fea2eaac0..f975f7e8f 100644
--- a/app/Services/Servers/ServerConfigurationStructureService.php
+++ b/app/Services/Servers/ServerConfigurationStructureService.php
@@ -87,6 +87,7 @@ class ServerConfigurationStructureService
             'suspended' => (bool) $server->suspended,
             'environment' => $this->environment->handle($server),
             'invocation' => $server->startup,
+            'skip_egg_scripts' => $server->skip_scripts,
             'build' => [
                 'memory_limit' => $server->memory,
                 'swap' => $server->swap,
@@ -95,11 +96,6 @@ class ServerConfigurationStructureService
                 'threads' => $server->threads,
                 'disk_space' => $server->disk,
             ],
-            'service' => [
-                'egg' => $server->egg->uuid,
-                'pack' => $server->pack ? $server->pack->uuid : null,
-                'skip_scripts' => $server->skip_scripts,
-            ],
             'container' => [
                 'image' => $server->image,
                 'oom_disabled' => $server->oom_disabled,