From 942feb2c3e18f4dda252b0e0071b99b9bed66ae2 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sat, 1 Jan 2022 17:06:19 -0500 Subject: [PATCH] Core/Instance: remove wrong raid-only restriction in the logic that kicks offline players out of instances when the instance is reset. Port From (https://github.com/TrinityCore/TrinityCore/commit/a2b1b3e2aad4f2ecfbf156d96890c1ecde678c11) --- Source/Game/Groups/Group.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Groups/Group.cs b/Source/Game/Groups/Group.cs index 764f69e3f..a3fa62397 100644 --- a/Source/Game/Groups/Group.cs +++ b/Source/Game/Groups/Group.cs @@ -2039,7 +2039,7 @@ namespace Game.Groups // do not reset the instance, just unbind if others are permanently bound to it if (instanceSave.CanReset()) { - if (map != null && IsRaidGroup() && map.IsDungeon() && SendMsgTo) + if (map != null && map.IsDungeon() && SendMsgTo) { AreaTriggerStruct instanceEntrance = Global.ObjectMgr.GetGoBackTrigger(map.GetId());