From 9a17604b0388502edb72cd347bd8588ec8facace Mon Sep 17 00:00:00 2001 From: Andrew <47818697+Nyeriah@users.noreply.github.com> Date: Tue, 17 Feb 2026 00:32:51 -0300 Subject: [PATCH] fix(Scripts/Naxxramas): set Four Horsemen chest respawn timer to 7 days (#24739) --- src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp index b9d4e81e2..c31b2042e 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_four_horsemen.cpp @@ -258,7 +258,10 @@ public: if (instance->IsBossDone(BOSS_HORSEMAN)) if (GameObject* chest = me->GetMap()->SummonGameObject(RAID_MODE(GO_HORSEMEN_CHEST_10, GO_HORSEMEN_CHEST_25), 2514.8f, -2944.9f, 245.55f, 5.51f, 0, 0, 0, 0, 0)) + { + chest->SetRespawnTime(7 * DAY); chest->SetLootRecipient(me); + } } void JustEngagedWith(Unit* who) override