diff options
| author | 55Honey <71938210+55Honey@users.noreply.github.com> | 2022-11-19 13:34:30 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-19 09:34:30 -0300 |
| commit | 856c2e5e5898b1881c8cd28ba158cdf75335992c (patch) | |
| tree | a19fa8f0025876dd7783fc3205df1737c5f4b246 /src/server/scripts/Commands | |
| parent | afebbb816cb7fe84fbec0c46beb532b8b5215dbe (diff) | |
chore(Scripts/Commands): increase default removal duration to 30m from 15m (#13869)
Diffstat (limited to 'src/server/scripts/Commands')
| -rw-r--r-- | src/server/scripts/Commands/cs_deserter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_deserter.cpp b/src/server/scripts/Commands/cs_deserter.cpp index f20c1c15b1..b884565ee3 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<std::string> 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; |
