chore(Scripts/Commands): increase default removal duration to 30m from 15m (#13869)

This commit is contained in:
55Honey 2022-11-19 13:34:30 +01:00 committed by GitHub
parent afebbb816c
commit 856c2e5e58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;