diff --git a/config/config.go b/config/config.go index caeebc1..9ad62cf 100644 --- a/config/config.go +++ b/config/config.go @@ -65,6 +65,7 @@ type Config struct { EnableBotNotification bool `json:"enableBotNotification"` // 是否开启机器人广播 EnableRebootLater bool `json:"enableRebootLater"` // 是否开启延时关闭&重启 OverrideDLL bool `json:"overrideDLL"` // 是否由palgo中内置的dll覆盖游戏目录的dll + UsePalServerExe bool `json:"usePalserverexe"` // 是否维持传统启动行为 } // 默认配置 @@ -91,6 +92,7 @@ var defaultConfig = Config{ EnableUe4Debug: false, EnableEngineSetting: true, OverrideDLL: true, + UsePalServerExe: false, BackupInterval: 1800, // 30 分钟 MemoryCheckInterval: 30, // 30 秒 MemoryUsageThreshold: 80, // 80% diff --git a/front/palworld-front/src/pages/IndexView.vue b/front/palworld-front/src/pages/IndexView.vue index b3c74a2..22727d1 100644 --- a/front/palworld-front/src/pages/IndexView.vue +++ b/front/palworld-front/src/pages/IndexView.vue @@ -95,6 +95,11 @@ label="是否覆盖dll(不开请自己管理palguard和ue4的dll)" class="q-my-md" /> + - - - - - - - Palworld Server Configuration Generator - - - - - -
- - - + + + + + + + + Palworld Server Configuration Generator + + + + + +
+ + + \ No newline at end of file