Skip to content

Commit 6d67afa

Browse files
authored
change --rcon-pass argument to --rcon-password
see https://wiki.factorio.com/Console#Command_Line_Parameters for details, forum posts mentioned that this changed happened back in ~1.3.
1 parent f33e540 commit 6d67afa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorio_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func (f *FactorioServer) Run() error {
108108
"--port", strconv.Itoa(f.Port),
109109
"--server-settings", filepath.Join(config.FactorioConfigDir, "server-settings.json"),
110110
"--rcon-port", strconv.Itoa(config.FactorioRconPort),
111-
"--rcon-pass", config.FactorioRconPass,
111+
"--rcon-password", config.FactorioRconPass,
112112
}
113113

114114
if f.Savefile == "Load Latest" {

0 commit comments

Comments
 (0)