diff options
author | Keader <keader.android@gmail.com> | 2019-01-30 14:48:46 -0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-11-23 00:39:59 +0100 |
commit | cfd0e18b81bce130894caba7f442f31a8de8fd4c (patch) | |
tree | 35be6450bd04672fa27bc9b3d551d5d789d1c21f | |
parent | 4a943fd3d22f6d44f47eeb95f447e3c6609e2f43 (diff) |
Core/Misc: Fixed shaman elementals and magister terrace first boss access
(cherry picked from commit 6545cd33b91468de7c1b4beb77cdeb4ecb77f501)
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 3 | ||||
-rw-r--r-- | src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 111cf8fa367..50dc075c120 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -4632,9 +4632,6 @@ void SpellMgr::LoadSpellInfoCorrections() properties->Title = AsUnderlyingType(SummonTitle::Totem); if (SummonPropertiesEntry* properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(628))) // Hungry Plaguehound properties->Control = SUMMON_CATEGORY_PET; - // Came with 00958c9178781ac11a9dcabd034ed2e82120fad6 but as of 9.1.5 there are 533 other spells using this summon properties - //if (SummonPropertiesEntry* properties = const_cast<SummonPropertiesEntry*>(sSummonPropertiesStore.LookupEntry(61))) // Summon Arcane Spheres - // properties->Title = AsUnderlyingType(SummonTitle::None); TC_LOG_INFO("server.loading", ">> Loaded SpellInfo corrections in %u ms", GetMSTimeDiffToNow(oldMSTime)); } diff --git a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp index a5f42c2e12f..5b0b33859c9 100644 --- a/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp +++ b/src/server/scripts/EasternKingdoms/MagistersTerrace/instance_magisters_terrace.cpp @@ -53,8 +53,8 @@ ObjectData const gameObjectData[] = DoorData const doorData[] = { - { GO_SUNWELL_RAID_GATE_2 , DATA_SELIN_FIREHEART, DOOR_TYPE_PASSAGE }, - { GO_ASSEMBLY_CHAMBER_DOOR, DATA_SELIN_FIREHEART, DOOR_TYPE_ROOM }, + { GO_SUNWELL_RAID_GATE_2 , DATA_SELIN_FIREHEART, DOOR_TYPE_ROOM }, + { GO_ASSEMBLY_CHAMBER_DOOR, DATA_SELIN_FIREHEART, DOOR_TYPE_PASSAGE }, { GO_SUNWELL_RAID_GATE_5, DATA_VEXALLUS, DOOR_TYPE_PASSAGE }, { GO_SUNWELL_RAID_GATE_4, DATA_PRIESTESS_DELRISSA, DOOR_TYPE_PASSAGE }, { GO_ASYLUM_DOOR, DATA_KAELTHAS_SUNSTRIDER, DOOR_TYPE_ROOM }, |