From 57fba4e18e29dc64281c0c2b2679b553c0afd43a Mon Sep 17 00:00:00 2001 From: Thomas Christlieb Date: Fri, 14 Apr 2023 11:49:45 +0200 Subject: [PATCH] Rename JoinChatDelay --- launch-dedicated.cmd | 4 ++-- launch-dedicated.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/launch-dedicated.cmd b/launch-dedicated.cmd index ab9092312e..9cff0b8fb7 100644 --- a/launch-dedicated.cmd +++ b/launch-dedicated.cmd @@ -20,12 +20,12 @@ set EnableGeoIP=True set EnableLintChecks=True set ShareAnonymizedIPs=True -set JoinChatDelay=5000 +set FloodLimitJoinCooldown=5000 set SupportDir="" :loop -bin\OpenRA.Server.exe Engine.EngineDir=".." Game.Mod=%Mod% Server.Name=%Name% Server.Map=%Map% Server.ListenPort=%ListenPort% Server.AdvertiseOnline=%AdvertiseOnline% Server.EnableSingleplayer=%EnableSingleplayer% Server.Password=%Password% Server.RecordReplays=%RecordReplays% Server.RequireAuthentication=%RequireAuthentication% Server.ProfileIDBlacklist=%ProfileIDBlacklist% Server.ProfileIDWhitelist=%ProfileIDWhitelist% Server.EnableSyncReports=%EnableSyncReports% Server.EnableGeoIP=%EnableGeoIP% Server.EnableLintChecks=%EnableLintChecks% Server.ShareAnonymizedIPs=%ShareAnonymizedIPs% Server.JoinChatDelay=%JoinChatDelay% Engine.SupportDir=%SupportDir% +bin\OpenRA.Server.exe Engine.EngineDir=".." Game.Mod=%Mod% Server.Name=%Name% Server.Map=%Map% Server.ListenPort=%ListenPort% Server.AdvertiseOnline=%AdvertiseOnline% Server.EnableSingleplayer=%EnableSingleplayer% Server.Password=%Password% Server.RecordReplays=%RecordReplays% Server.RequireAuthentication=%RequireAuthentication% Server.ProfileIDBlacklist=%ProfileIDBlacklist% Server.ProfileIDWhitelist=%ProfileIDWhitelist% Server.EnableSyncReports=%EnableSyncReports% Server.EnableGeoIP=%EnableGeoIP% Server.EnableLintChecks=%EnableLintChecks% Server.ShareAnonymizedIPs=%ShareAnonymizedIPs% Server.FloodLimitJoinCooldown=%FloodLimitJoinCooldown% Engine.SupportDir=%SupportDir% goto loop diff --git a/launch-dedicated.sh b/launch-dedicated.sh index 0d5563d7ea..8f195f9002 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -33,7 +33,7 @@ EnableGeoIP="${EnableGeoIP:-"True"}" EnableLintChecks="${EnableLintChecks:-"True"}" ShareAnonymizedIPs="${ShareAnonymizedIPs:-"True"}" -JoinChatDelay="${JoinChatDelay:-"5000"}" +FloodLimitJoinCooldown="${FloodLimitJoinCooldown:-"5000"}" SupportDir="${SupportDir:-""}" @@ -53,6 +53,6 @@ while true; do Server.EnableGeoIP="$EnableGeoIP" \ Server.EnableLintChecks="$EnableLintChecks" \ Server.ShareAnonymizedIPs="$ShareAnonymizedIPs" \ - Server.JoinChatDelay="$JoinChatDelay" \ + Server.FloodLimitJoinCooldown="$FloodLimitJoinCooldown" \ Engine.SupportDir="$SupportDir" || : done