From d902c6a318be4769d1b085a28427dee366f12804 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Tue, 31 May 2022 13:53:54 -0400 Subject: [PATCH] Core/Battlegrounds: Remove legacy battleground exit areatriggers Port From (https://github.com/TrinityCore/TrinityCore/commit/641110e5543e53318d39054fb423858a96064a34) --- Source/Game/BattleGrounds/Zones/ArathiBasin.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Source/Game/BattleGrounds/Zones/ArathiBasin.cs b/Source/Game/BattleGrounds/Zones/ArathiBasin.cs index ada81e998..f3a06f1d5 100644 --- a/Source/Game/BattleGrounds/Zones/ArathiBasin.cs +++ b/Source/Game/BattleGrounds/Zones/ArathiBasin.cs @@ -241,17 +241,7 @@ namespace Game.BattleGrounds.Zones TeleportPlayerToExploitLocation(player); break; case 3948: // Arathi Basin Alliance Exit. - if (player.GetTeam() != Team.Alliance) - player.GetSession().SendNotification("Only The Alliance can use that portal"); - else - player.LeaveBattleground(); - break; case 3949: // Arathi Basin Horde Exit. - if (player.GetTeam() != Team.Horde) - player.GetSession().SendNotification("Only The Horde can use that portal"); - else - player.LeaveBattleground(); - break; case 3866: // Stables case 3869: // Gold Mine case 3867: // Farm @@ -260,7 +250,6 @@ namespace Game.BattleGrounds.Zones case 4020: // Unk1 case 4021: // Unk2 case 4674: // Unk3 - //break; default: base.HandleAreaTrigger(player, trigger, entered); break;