Changed GoConfig to UsrConfig

Changed GoConfig struct to UsrConfig
This commit is contained in:
2026-05-04 11:50:08 -06:00
parent 6ef8f280a8
commit e051d2d6f6
6 changed files with 7 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ import (
"os/exec"
)
func startStopServer(cmd string, con GoConfig) {
func startStopServer(cmd string, con UsrConfig) {
switch cmd {
case "start":
x := fmt.Sprintf("%s --port %d --server-settings %s --start-server %s", con.Server.ServExec, con.Server.ServPort, con.Server.ServCfg, con.Server.WorldFile)