From 13a3b6f06c5d9b5bc5f0702c61c6635576b72004 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 27 Dec 2021 15:28:38 -0500 Subject: [PATCH] Misc/Config: set decay timer for unlooted normal creatures to 5 minutes. Port From (https://github.com/TrinityCore/TrinityCore/commit/2c55730a0155f7f7da5cbed70ea21a0b8923aad7) --- Source/WorldServer/WorldServer.conf.dist | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/WorldServer/WorldServer.conf.dist b/Source/WorldServer/WorldServer.conf.dist index 28bb69d93..1d4baac99 100644 --- a/Source/WorldServer/WorldServer.conf.dist +++ b/Source/WorldServer/WorldServer.conf.dist @@ -1574,13 +1574,13 @@ WorldBossLevelDiff = 3 # Corpse.Decay.RAREELITE # Corpse.Decay.WORLDBOSS # Description: Time (in seconds) until creature corpse will decay if not looted or skinned. -# Default: 60 - (1 Minute, Corpse.Decay.NORMAL) +# Default: 300 - (5 Minute, Corpse.Decay.NORMAL) # 300 - (5 Minutes, Corpse.Decay.RARE) # 300 - (5 Minutes, Corpse.Decay.ELITE) # 300 - (5 Minutes, Corpse.Decay.RAREELITE) # 3600 - (1 Hour, Corpse.Decay.WORLDBOSS) -Corpse.Decay.NORMAL = 60 +Corpse.Decay.NORMAL = 300 Corpse.Decay.RARE = 300 Corpse.Decay.ELITE = 300 Corpse.Decay.RAREELITE = 300