From 856c2e5e5898b1881c8cd28ba158cdf75335992c Mon Sep 17 00:00:00 2001 From: 55Honey <71938210+55Honey@users.noreply.github.com> Date: Sat, 19 Nov 2022 13:34:30 +0100 Subject: [PATCH] chore(Scripts/Commands): increase default removal duration to 30m from 15m (#13869) --- src/server/scripts/Commands/cs_deserter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Commands/cs_deserter.cpp b/src/server/scripts/Commands/cs_deserter.cpp index f20c1c15b..b884565ee 100644 --- a/src/server/scripts/Commands/cs_deserter.cpp +++ b/src/server/scripts/Commands/cs_deserter.cpp @@ -322,7 +322,7 @@ public: static bool HandleDeserterRemoveAll(ChatHandler* handler, bool isInstance, Optional maxTime) { uint32 deserterSpell = isInstance ? LFG_SPELL_DUNGEON_DESERTER : BG_SPELL_DESERTER; - int32 remainTime = isInstance ? 1800 : 900; + int32 remainTime = isInstance ? 1800 : 1800; uint64 deserterCount = 0; bool countOnline = true;