Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(Core/SAI): Allow scripts to target the summoner of a TempSummon #10819

Merged
merged 1 commit into from
Mar 15, 2022

Conversation

SilentCLD
Copy link
Contributor

Changes Proposed:

Allow scripts to target the summoner of a TempSummon, this was removed in PR #9372 (TempSummons do not use the same path as GetCharmerOrOwnerGUID())

Issues Addressed:

Tests Performed:

  • Completed dungeon Pit of Saron

How to Test the Changes:

  1. .tele PitOfSaron
  2. Kill the first two bosses and wait for the RP section to finish
  3. Start running up the hill to Tryrannus
  4. 10 creatures will spawn, once killed the next set will correctly spawn as you reach the top and the dungeon can be completed

@Yehonal Yehonal added CORE Related to the core file-cpp Used to trigger the matrix build labels Feb 25, 2022
@Nefertumm
Copy link
Member

For tester: Make sure this doesn't break the changes introduced by the PR linked too!

@Kisskam
Copy link

Kisskam commented Mar 2, 2022

I have done the tests and the application was successful. Now you can make this dungeon normal.

  • I don't speak English so I use a translation tool.

@pangolp
Copy link
Contributor

pangolp commented Mar 2, 2022

I have done the tests and the application was successful. Now you can make this dungeon normal.

  • I don't speak English so I use a translation tool.

Welcome to the world of testing

@ghost
Copy link

ghost commented Mar 9, 2022

Tested and work, but I'm unable to see a respawn of Blazings like it's mention on #9372 . I got also 3 crash after doing: .tele pitofsaron, instance reset.

@Kitzunu or @Nyeriah
This PR and the PR #10150 fix the same bugs. The PR #10150 fix also the issue #10760 but it's not mentioned.

4624729f3ba1_worldserver.exe.zip

@SilentCLD
Copy link
Contributor Author

SilentCLD commented Mar 10, 2022

Tested and work, but I'm unable to see a respawn of Blazings like it's mention on #9372 . I got also 3 crash after doing: .tele pitofsaron, instance reset (no crash without this PR).

@Kitzunu or @Nyeriah This PR and the PR #10150 fix the same bugs. The PR #10150 fix also the issue #10760 but it's not mentioned.

4624729f3ba1_worldserver.exe.zip

I quickly tested this on the commit before in this branch (0ce1c96) and the Blazings don't respawn so it's safe to say it's not related to this PR.

The crash is also unrelated and appears to be coming from the mutex in InstanceSave::RemovePlayer. I can reliably reproduce this by:

  1. binding to an instance
  2. gracefully restarting the server
  3. instance unbind all
    bool InstanceSave::RemovePlayer(ObjectGuid guid, InstanceSaveMgr* ism)
    {
    std::lock_guard<std::mutex> guard(_lock);
    m_playerList.remove(guid);
    // ism passed as an argument to avoid calling via singleton (might result in a deadlock)
    return ism->DeleteInstanceSaveIfNeeded(this->GetInstanceId(), false);
    }

PR #10150 is not the proper fix, it only bypasses this issue by removing the requirement to kill the spawned creatures before continuing. This PR effects anything that has a smart script target of OWNER_OR_SUMMONER

@Alexander990608
Copy link

It doesn't work now, when you kill first spot, when you go up, it doesn't summon other mobs near the cave, you need to restart the server, after you kill those mobs and you go in cave, nothing happens.. So practically you must restart server for like 2 times for last Boss work. :)

@ghost
Copy link

ghost commented Mar 12, 2022

It doesn't work now, when you kill first spot, when you go up, it doesn't summon other mobs near the cave, you need to restart the server, after you kill those mobs and you go in cave, nothing happens.. So practically you must restart server for like 2 times for last Boss work. :)

Strange... I will redonne some tests this night.

@Alexander990608
Copy link

It doesn't work now, when you kill first spot, when you go up, it doesn't summon other mobs near the cave, you need to restart the server, after you kill those mobs and you go in cave, nothing happens.. So practically you must restart server for like 2 times for last Boss work. :)

Strange... I will redonne some tests this night.

Thank you!! I don't know what is happening but when you kill those 2 bosses and after you go up, first mobs are comming, but next one near cave event are not comming..

@SilentCLD
Copy link
Contributor Author

It doesn't work now, when you kill first spot, when you go up, it doesn't summon other mobs near the cave, you need to restart the server, after you kill those mobs and you go in cave, nothing happens.. So practically you must restart server for like 2 times for last Boss work. :)

@Alexander990608
Trigger 1 can activate once both bosses are killed and Tyrannus has done his RP sequence, entering this trigger will spawn 2 casters which will then spawn 4 other creatures each.
Trigger 2 can activate once all 10 creatures have been killed, entering this trigger will spawn the next wave before the cave

When running through with GM commands it's best to use the .damage command (you can put something like .damage 100000 in a macro) instead of .die as that may have unintended side-effects
To further help you can use the .debug areatriggers command which will alert you when you enter an area trigger
Trigger 1 = 5578
Trigger 2 = 5579

There is also Trigger 5580 in the cave which starts the event which spawns the icicles

Trigger locations

@Alexander990608
Copy link

Alexander990608 commented Mar 12, 2022

.debug areatriggers

I did what you said, still bugged for me! I don't really know what is happening.. After i restart server and going to Trigger 2, it works, when i kill those mobs and i go in cave event for Trigger 3 icicles it doesn't work, i must restart the server again.

Screenshot here:
image

@ghost
Copy link

ghost commented Mar 13, 2022

.debug areatriggers

I did what you said, still bugged for me! I don't really know what is happening.. After i restart server and going to Trigger 2, it works, when i kill those mobs and i go in cave event for Trigger 3 icicles it doesn't work, i must restart the server again.

Screenshot here: image

Do you wait that all the events start and finish ? Are you in gm mode ? Are you sure that you are on the right PR ? I have recorded my test and say us what you do differently, because I'm unable to reproduce this.

https://youtu.be/n1TdHaL0mu8

@SilentCLD
Copy link
Contributor Author

I've spoken with Alexander directly and confirmed that the PR was not active on his test server. This can be re-added to the merge queue.

@FrancescoBorzi FrancescoBorzi merged commit 624d417 into azerothcore:master Mar 15, 2022
@SilentCLD SilentCLD deleted the smartscript-target branch March 15, 2022 22:27
locus313 added a commit to locus313/azerothcore-wotlk that referenced this pull request Mar 27, 2022
* feat(DB/Account): Delete auto increment in account table (azerothcore#10879)

* fix(DB/Loot): Only drop Draconic for Dummies if the player has the quest (azerothcore#10818)

* chore(DB): import pending files

Referenced commit(s): b891046

* fix(Scripts/BWL): Vaelastrasz improvement (azerothcore#10845)

* chore(DB): import pending files

Referenced commit(s): 4b77dcd

* fix(DB/creature): Fix Death Howl Spawns (azerothcore#10871)

* chore(DB): import pending files

Referenced commit(s): 3c59a0a

* fix(DB/creature): Fix Weaver MovementType (azerothcore#10861)

* chore(DB): import pending files

Referenced commit(s): 7dbadd2

* fix(DB/Pathing) Banthar and Clefthoof formations (azerothcore#10842)

* chore(DB): import pending files

Referenced commit(s): df8a1e6

* fix(Scripts/Raids): some corrections to Broodlord Supression Room: (azerothcore#10834)

Supression traps should always hit players.
Supression traps should not be disarmed after Broodlord defeat.
Supression traps should be visible after disarm.
Fixes azerothcore#10768

* fix(DB/quest_request_items): typo in Salve via Hunting (azerothcore#10833)

* chore(DB): import pending files

Referenced commit(s): 9b765aa

* fix(DB/page_text): correct Text for Laird's Response (azerothcore#10530)

* chore(DB): import pending files

Referenced commit(s): 8303aab

* BREAKING CHANGE(Core/Config): Individual XP rate per bg (azerothcore#10793)

* chore(DB): import pending files

Referenced commit(s): 680e60c

* fix(Core/Player): fix pet not appearing after dismount for warlock (azerothcore#10899)

* fix(DB): Horde Feralas Quest Emotes (azerothcore#10748)

* chore(DB): import pending files

Referenced commit(s): 0d0e6b6

* chore(Core/Creature): clean up an unnecessary function (azerothcore#10904)

* Core/Packet: LFG (azerothcore#9420)

* Core/Packet: LFG

* Update LFGHandler.cpp

* fix(DB/Quest): The Amphitheater of Anguish: Yggdras! (azerothcore#10412)

* fix(DB): Blackwing Technician spawn and addon (azerothcore#10470)

* fix(DB): Blackwing Technician spawn and addon

- Added spawns based on sniffs and updated addon for their emote.
- Cleared spawns.

* wrong delete

* add support to Nefertum's PR

* BETWEEN mysql

* Update rev_1643656464415474000.sql

* added linked_respawn delete

Co-authored-by: Nefertumm <nefertum.dev@protonmail.com>

* fix(DB/conditions): Fix Keristrasza Gossip (azerothcore#10531)

* chore(DB): import pending files

Referenced commit(s): 9f6a360

* fix(DB): Odesyus' Landing Gossip Conditions (azerothcore#10803)

* feat(Core/Creature): Implement quest_greetings table (azerothcore#10526)

* cherry-pick commit (TrinityCore/TrinityCore@6dda098)

Co-Authored-By: ForesterDev <11771800+ForesterDev@users.noreply.github.com>
Co-Authored-By: Giacomo Pozzoni <giacomopoz@gmail.com>

* fix(Core/Maps): Dead players should not be allowed to enter dungeon if exceeded max number of instances. Thx to @DepTypes (azerothcore#10831)

Fixed azerothcore#10799

* chore(DB): import pending files

Referenced commit(s): 09df444

* fix(Core/Spells): Implemented SPELL_ATTR0_CU_IGNORE_EVADE. (azerothcore#10832)

Added channel beam at Razorgore pre-fight.
Fixed azerothcore#10767

* fix(Scripts/Raids): Debuff Mind Exhaustion on Razorgore should be apply on start of mind control. (azerothcore#10835)

Fixes azerothcore#10769

* fix(DB): Add missing pathing to Mother Fang (azerothcore#10836)

* fix(Scripts/Raids): Phase 3 of Razorgore encounter should start when all eggs are destroyed. (azerothcore#10837)

Fixes azerothcore#10770.

* fix(Core/Movement): Send proper movement animation visuals. (azerothcore#10843)

Fixed azerothcore#10812
Fixed azerothcore#10814

* fix(DB/Pathing): Add missing pathing to Ironforge Mountaineer (azerothcore#10852)

* fix(DB/Pathing): Add missing pathing to Mosh'Ogg Spellcrafter (azerothcore#10853)

* fix(DB/Pathing): Add missing pathing and fix position for Booty Bay Bruiser (azerothcore#10855)

* fix(DB/Pathing): Booty Bay Bruisers pathing fixes (azerothcore#10856)

* fix(DB/Pathing): Add Missing Hakkari Oracle Pathing (azerothcore#10857)

* fix(DB/Pathing): Add Missing Murkgill Hunter pathing (azerothcore#10858)

* chore(DB): import pending files

Referenced commit(s): b03078f

* fix(DB/Pathing): Add Missing Mosh'Ogg Warmonger Pathing (azerothcore#10859)

* fix(DB/Pathing): Add Missing Mosh'Ogg Warmonger Pathing

* Add several more missing paths in same location

* chore(DB): import pending files

Referenced commit(s): 623c3f1

* fix(DB): Missing Skullsplitter Troll Pathing and Formation (azerothcore#10860)

* chore(DB): import pending files

Referenced commit(s): 95fc46d

* fix (DB): Howling Fjord missions translated into Spanish (azerothcore#10867)

* chore(DB): import pending files

Referenced commit(s): 2594956

* fix(DB/Pathing): Add Missing Bloodscalp Mystic patrol path (azerothcore#10870)

* fix(DB/Pathing): Add Missing Bloodscalp Mystic patrol path

* Add pathing for nearby Bloodscalp Scout as well

* chore(DB): import pending files

Referenced commit(s): f697173

* fix(DB): Fix Orgrimmar Grunt creature_addon data (azerothcore#10872)

* feat(Core/Players): do not update position data on character creation

* chore(DB): import pending files

Referenced commit(s): 029b79e

* fix(DB/Scripts): Fix Ring of Blood Quest Credit (azerothcore#10889)

* feat(Core/Packet): SMSG_CROSSED_INEBRIATION_THRESHOLD (azerothcore#10893)

* chore(DB): import pending files

Referenced commit(s): 8eeb6ef

* fix(Core/Spells): Fixed getting max spell range for friendly targets. (azerothcore#10906)

Fixes azerothcore#10802

* fix (db): Thrash (azerothcore#10869)

* fix (db): Thrash

Thrash was messed up extremely with a ton of npcs, this is a bit of a revert dealing with those npcs but with corrections to ensure the spell is not spammed and triggers only when they are suppose to.

* Update rev_1646161855065886626.sql

Credits to @temperrr for the assist with finding me the old table to help with the undoing of things

Co-Authored-By: temperrr <temperrr@users.noreply.github.com>

* Update rev_1646161855065886626.sql

* this might be it

* Update data/sql/updates/pending_db_world/rev_1646161855065886626.sql

* Update data/sql/updates/pending_db_world/rev_1646161855065886626.sql

* Update data/sql/updates/pending_db_world/rev_1646161855065886626.sql

* Update rev_1646161855065886626.sql

* Update rev_1646161855065886626.sql

May Talos guide you.

Co-authored-by: temperrr <temperrr@users.noreply.github.com>
Co-authored-by: Nefertumm <nefertum.dev@protonmail.com>

* chore(DB): import pending files

Referenced commit(s): 689d4e0

* fix(Scripts/OnyxiasLair): Force Onyxia to enter evade mode if pulled out of her room (azerothcore#10890)

* chore(DB): import pending files

Referenced commit(s): d835832

* (DB/Translations) Alliance quests in Grizzly Hills (azerothcore#10927)

* chore(DB): import pending files

Referenced commit(s): e4f88ba

* fix(DB/quest_greeting): Populate quest_greeting table (azerothcore#10928)

* Credit to TrinityCore and VMangos for entries

* chore(DB): import pending files

Referenced commit(s): a7aecd1

* fix(DB/Scripts): Fix Thrash Console Error (azerothcore#10929)

* chore(DB): import pending files

Referenced commit(s): ecfb8a0

* fix(Core/Spells): Fixed damage of Burning Adrenaline. (azerothcore#10901)

* fix(Core/Spells): Fixed damage of Burning Adrenaline.

Fixes azerothcore#10772

* Update SpellInfoCorrections.cpp

Co-authored-by: acidmanifesto <joshua.lee.betts@gmail.com>

* fix (DB): Grimclaw NPC Mini RP event (azerothcore#10926)

* fix (DB): Grimclaw NPC Mini RP event

Fix issue of "Skyhopping"/"flying".
added missing wayooints.
adjusted smart scripts and action scripts with new waypoint adjustments

* Update rev_1646669713670945917.sql

* chore(DB): import pending files

Referenced commit(s): f2f0b74

* fix(DB/BWL): Blackwing Technicians should not auto attack (azerothcore#10897)

* chore(DB): import pending files

Referenced commit(s): 3cab4f4

* fix(DB/quest_request_items_locale): Add some ruRU Texts (azerothcore#10936)

Taken from TrinityCore/TrinityCore@08f7fe6
Co-Authored-By: [kvolk2git@users.noreply.github.com](mailto:kvolk2gitl@users.noreply.github.com)

* chore(DB): import pending files

Referenced commit(s): 95b94d8

* (DB/Translations) Neutral quests in Grizzly Hills (azerothcore#10937)

* (DB/Translations) Neutral quests in Grizzly Hills

* Optimizing SQL queries

* chore(DB): import pending files

Referenced commit(s): 085ed12

* feat(Core/Conf): Miss Chance Multiplier (azerothcore#10873)

* fix(Scripts/Ulduar): Fixed launching Leviathan's hard mode. (azerothcore#10911)

Fixes azerothcore#10877

* fix(Scripts/Ulduar): Fixed spawning Hodir chests. (azerothcore#10844)

* fix (Console): count of Broadcast Text Locales shown by logger on server start (azerothcore#10942)

* fix(DB/quest_template_locale): Correct zhTW Text (azerothcore#10940)

* fix(DB/quest_template_locale): Correct zhTW Text

* Use single quote

* chore(DB): import pending files

Referenced commit(s): 21539f0

* fix(Scripts/BlackwingLair): Nefarian (azerothcore#10536)

* chore(DB): import pending files

Referenced commit(s): 707968e

* fix (core): Load Order Adjustment GAME_EVENT_START hook (azerothcore#10939)

This effect any and all Smartscripts using Smart Event 68 (10 total at this time of rev) and 69 (21 total at this time of rev)
Dealing both with event 85 Stitches Event and event 87 Scarlet Oracle

* fix(Scripts/BlackwingLair): Improved Ebonroc's movement. (azerothcore#10905)

* fix(DB/BWL): Trash formations (azerothcore#10960)

* chore(DB): import pending files

Referenced commit(s): 81939be

* fix(DB/BWL): Blackwing Technicians (azerothcore#10958)

* fix(DB/BWL): Blackwing Technicians

* typo

* chore(DB): import pending files

Referenced commit(s): 94647d8

* fix(Core/Creature): correctly load creature equipments (azerothcore#10966)

* fix(Scripts/BlackwingLair): Vaelastrasz (azerothcore#10962)

* feat(Core/Gossips): override BoxMoney from DB (azerothcore#10414)

* fix(Scripts/AlteracValley): Mini bosses should evade with boss (azerothcore#10544)

Fixed azerothcore#10460

* fix(DB/Events): Apothecary Hummel should be linked to event (azerothcore#10786)

* chore(DB): import pending files

Referenced commit(s): a6c93f1

* fix(DB/quest_template_addon): Fix The Battle for Arathi Basin (azerothcore#10930)

* fix(DB/quest_template_addon): Fix The Battle for Arathi Basin

* fix(DB/quest_template_addon): Fix The Battle for Arathi Basin

* chore(DB): import pending files

Referenced commit(s): ea0ab6b

* feat(Core/Maps): Improvements to Cinematic function  (azerothcore#10765)

* fix(Core/BWL): Remove warlocks and taskmasters as Razorgore's summons (azerothcore#10961)

* Revert "fix(Scripts/AlteracValley): Mini bosses should evade with boss (azerothcore#10544)" (azerothcore#10975)

This reverts commit 348b374.

* feat(Core/Packet): CMSG_SET_SHEATHED

* fix(Scripts/ZulGurub): implement mising Hakkar speech that fires when reaching his temple

* chore(DB): import pending files

Referenced commit(s): 45c2297

* fix(DB/BWL): Blackwing Taskmaster path error (azerothcore#10959)

* chore(DB): import pending files

Referenced commit(s): b0bc330

* fix(Core/BWL): Nefarian reset behaviour (azerothcore#10957)

* fix(Scripts/Ulduar): "I Could Say That This Cache Was Rare" achievement. (azerothcore#10912)

* fix(Scripts/Sunken Temple): Fix Shade of Eranikus (azerothcore#10891)

* feat(db/locales): ruRU - Add missing quest_request_items_locale for quest  (azerothcore#10953)

* chore(DB): import pending files

Referenced commit(s): 33bdacf

* feat(db/locales): ruRU - translation of the objectives field for quest 5624 (azerothcore#10956)

* chore(DB): import pending files

Referenced commit(s): 0dad08b

* fix and bringing to a unified style warnings of server loading logs to be more visible at server startup (azerothcore#10970)

* fix(DB): Gossip Option to Restore Missing Totem (azerothcore#10868)

* chore(DB): import pending files

Referenced commit(s): d61ebd7

* fix(Core/BWL): Nefarian weekly adds spawn mechanics (azerothcore#10981)

* fix(Core/BWL): Nefarian weekly spawn mechanics

* chore(DB): import pending files

Referenced commit(s): 7decab3

* fix(Core/Professions): Leatherworking specialization (azerothcore#10415)

* chore(DB): import pending files

Referenced commit(s): 4806769

* fix(Core/Spells): Beacon of Light should not proc off from Glyph of Holy Light and Judgement of Light. (azerothcore#10564)

Fixed azerothcore#2782

* feat(DB/locales): fix missing zhTW CompletedText locale (azerothcore#10954)

* chore(DB): import pending files

Referenced commit(s): 80e1b82

* fix(Scripts/MoltenCore): Ragnaros should change its main target to so… (azerothcore#10758)


Fixes azerothcore#10363

* fix(Scripts/Zul'Gurub): Don't allow players to enter while encounters are in progress (azerothcore#10933)

* fix(Scripts/ZulGurub): Prevent Arlokk from being summoned twice (azerothcore#10932)

* fix(Core/SAI): allow scripts to target the summoner of a TempSummon (azerothcore#10819)

Fixes azerothcore#10760
Fixes azerothcore#10123

* feat(Core/Characters): Replace DELETE + INSERT with REPLACE (azerothcore#10862)

* fix(Core/Spells): Kill credits given via spells should always be awarded to players

* feat(Core/Battleground): rework bg queue system (azerothcore#10817)

* chore(DB): import pending files

Referenced commit(s): 78bdc89

* fix(Core/Spells): Periodic ticks number should not exceed the max one. (azerothcore#10999)

Fixes azerothcore#10876

* chore(Core/DataStores): correct logging fmt in `M2Stores.cpp`  (azerothcore#11018)

* fix(Scripts/Spells): Icewing Marshal should affect not affect players. (azerothcore#11001)

* chore(DB): import pending files

Referenced commit(s): 7357c88

* fix(DB/SAI): Fixed setting faction to Agnetta Tyrsdottar. (azerothcore#10988)

* chore(DB): import pending files

Referenced commit(s): c8e414a

* fix(Bash/Dashboard): fix macOS configurations (azerothcore#11002)

* fix(Core/Spells): Ruthlessness/Seal Fate selecting wrong proc target (azerothcore#10982)

Fixes azerothcore#10328

* feat(Core/Chat): Fixed feature to prevent horde and alliance players to chat with each other via custom emotes. (azerothcore#11000)

Fixes azerothcore#10600

* feat(CI): add more modules to CI (azerothcore#11065)

* fix(Core/Spells): Seed of Corruption detonation should obey LoS (azerothcore#10916)

- Source: TrinityCore
- Closes azerothcore#4521

* feat(DB/locales): missing zhTW CompletedText locale (azerothcore#10968)

* chore(DB): import pending files

Referenced commit(s): ab59c83

* fix(DB/Locale): Add missing zhTW CompletedText for Zul'Drak, Howling Fjord, Grizzly Hills, Storm Peaks quests (azerothcore#11031)

* chore(DB): import pending files

Referenced commit(s): 75bddc5

* fix(DB/Locale): Add missing zhTW CompletedText, (azerothcore#11032)

* chore(DB): import pending files

Referenced commit(s): b0fb722

* fix(DB/Locale): fix missing zhTW CompletedText locale text and locale Item names (azerothcore#11033)

* chore(DB): import pending files

Referenced commit(s): e17eba2

* fix(DB/Locale): wrong zhTW locale texts for quests 11560-11631 (azerothcore#11034)

* chore(DB): import pending files

Referenced commit(s): 43e3f5d

* fix (DB/Locale): Fix zhTW locale texts for death knight quests 12593-13189 (azerothcore#11035)

* chore(DB): import pending files

Referenced commit(s): c0dd59b

* fix(DB/Locale): zhTW locale texts for quests 13068-13090 (azerothcore#11036)

* chore(DB): import pending files

Referenced commit(s): 87441c7

* fix(DB/pathing): Blasted Lands Missing Pathing (azerothcore#11028)

* fix(Core/Mails): Do not load expired mails from database. (azerothcore#10917)

* chore(DB): import pending files

Referenced commit(s): e5f9c8c

* fix(Core/Spells): Nature's Swiftness should not be consumed by instant spells. (azerothcore#10909)

* fix(Core/Spells): Heal from Bloodthirst should be affected by healing mods. (azerothcore#10915)

* fix(DB/smart_scripts): The Restless Souls (azerothcore#10989)

* chore(DB): import pending files

Referenced commit(s): 55ef7ce

* fix(DB/Quest): The Tome of Divinity (azerothcore#10990)

* chore(DB): import pending files

Referenced commit(s): 3ae0769

* fix(Core/Loot): Fixed some chests inside dungeons not being bound only to participants. (azerothcore#10995)

* fix(Core/Events): Corrections to Apothecary Hummel (azerothcore#10674)

* fix(DB/quest_template): Rat Catching (azerothcore#11008)

* chore(DB): import pending files

Referenced commit(s): a067b4c

* fix(DB/pathing): Stranglethorn Missing Pathing (azerothcore#11012)

* chore(DB): import pending files

Referenced commit(s): 9d4cc72

* fix(DB/SAI): The Stone Watcher (azerothcore#11045)

* chore(DB): import pending files

Referenced commit(s): 5cc5499

* fix(DB/Locale): Add missing esES & esMX quest texts (azerothcore#11042)

* chore(DB): import pending files

Referenced commit(s): ce7b6c5

* fix(DB/Locale): esES & esMX quest texts (azerothcore#11044)

* chore(DB): import pending files

Referenced commit(s): 16f89e1

* feat (DB/locale): zhTW CompletedText locale text (azerothcore#11007)

* chore(DB): import pending files

Referenced commit(s): b0e6bae

* fix(DB/SAI): The Touch of Zanzil (azerothcore#11046)

* chore(DB): import pending files

Referenced commit(s): 199d215

* fix(DB/Creatures): Adjusted ground position for some mobs in Swamp of Sorrows. (azerothcore#11004)

* chore(DB): import pending files

Referenced commit(s): 15f6895

* fix(Core): Crash related to reset instances (azerothcore#11003)

* fix(DB/SAI/Quest): Stranglethorn Fever (azerothcore#11010)

* chore(DB): import pending files

Referenced commit(s): d298e11

* docs(LICENSE): remove old GPLv2 license (azerothcore#11076)

* fix(DB): Blood Elf Mage Trainers Incorrect Dialog (azerothcore#10524)

* chore(DB): import pending files

Referenced commit(s): 9d11928

* fix(DB/creature_template): Love is in the Air Creatures Level (azerothcore#11009)

* chore(DB): import pending files

Referenced commit(s): 534056f

* Core/Packet: SMSG_LEVELUP_INFO (azerothcore#10884)

* fix(DB/Creatures): Control Onyxia's movement flags via script. (azerothcore#11095)

* chore(DB): import pending files

Referenced commit(s): 8358a5d

* fix(Scripts/Spells): Earthliving Weapon should no proc from Earth Shield. (azerothcore#11094)

* fix(DB/Quest): Kim'jael Indeed! GO loot (azerothcore#10350)

* chore(DB): import pending files

Referenced commit(s): b0bcfc1

* fix (core) Script Names not loaded with manual add (azerothcore#11102)

This fixes Script names not being loaded with npcs and gameobjects when manually added with the .npc\gameobject add cmd that would lead the user to restart the server to load up the npc\gameobject with the script that was manually added

* fix(DB/Creature): Update equipment for Burning Blade NPCs (azerothcore#11112)

* chore(DB): import pending files

Referenced commit(s): 4e96604

* fix(Core/Command): Fix issue with waypoint show off (azerothcore#11111)

* fix(Core/Command): Fix issue with waypoint show off

* Update src/server/scripts/Commands/cs_wp.cpp

Co-authored-by: Kargatum <dowlandtop@yandex.com>

Co-authored-by: Kargatum <dowlandtop@yandex.com>

* fix (db) smartscript error fix Acherus Necromancer (azerothcore#11109)

* chore(DB): import pending files

Referenced commit(s): c7a7765

* fix(DB/Loot): Molten Core (azerothcore#11080)

* chore(DB): import pending files

Referenced commit(s): 6cc185b

* feat(Core/Packet): SMSG_DURABILITY_DAMAGE_DEATH (azerothcore#10894)

* fix(Scripts/BlackwingLair): Razorgore improvements (azerothcore#10971)

- Rewrite reset events
- Use proper healing spell on phase transition
- Now uses abilities during phase 1
- Phase transition scripted - mobs now run away

* chore(DB): import pending files

Referenced commit(s): 7377c96

* feat(Scripting/Hooks): implement OnQuestComputeXP() hook (azerothcore#10934)

* chore(DB): import pending files

Referenced commit(s): 44b7a06

* fix(Core/BattlegroundQueue): remove second queue if player enter bg (azerothcore#11067)

* fix(Core/Handlers): Faction Change service properly reset and give ne… (azerothcore#9729)

Fixes azerothcore#7981
Fixes azerothcore#8732

* fix(Scripts/Quest): improved Overwhelmed! (azerothcore#10387)

* chore(DB): import pending files

Referenced commit(s): c797cb0

* Fix (core) Death Comes from high Client Crash Fix (azerothcore#11136)

This fixes the client side crash while flying as the EYE OF ACHERUS, apparrently if the player lacks the visual spell on his character the client would crash. This is something I just want NOT ABLE to identify in debugger, however, true story also by the way, @TheDdraig made a suggestion while being both stone and highly intoxicate that he came up with the insane nonsensible approach that actually solved the issue 100%.

Co-Authored-By: TheDdraig <62179779+TheDdraig@users.noreply.github.com>

Co-authored-by: TheDdraig <62179779+TheDdraig@users.noreply.github.com>

* fix(Core/BWL): Victor Nefarius Shadow Bolt (azerothcore#11078)

* fix(Scripts/Blackwing Lair): Supression traps should not be disarmed... (azerothcore#11082)

…after Broodlord defeat.

* fix (DB/Creature): BWL trash boe drop adjustment (azerothcore#11156)

* chore(DB): import pending files

Referenced commit(s): 463c49e

* fix(DB/Formations): Death Talon Wyrmguard should be linked (azerothcore#11068)

* chore(DB): import pending files

Referenced commit(s): f5d01ba

* fix(DB/SAI): Despawn all nearest Demon Portals on Blackwing Warlock d… (azerothcore#11092)

…eath.

* chore(DB): import pending files

Referenced commit(s): 58f7e0e

* fix(DB/Creatures): Corrupted Blue Whelp should stop respawning if Bro… (azerothcore#11153)

…odlord Lashlayer is dead.

* fix(DB/pathing): Duskwood and Deadwind Missing Pathing (azerothcore#11054)

* chore(DB): import pending files

Referenced commit(s): 2fd4772

* fix(Scripts/Vehicles): The next player entering Salvaged Siege Engine… (azerothcore#10987)

… should control turret if it's not occupied.

Co-authored-by: Walter Pagani <paganiwalter@gmail.com>
Co-authored-by: Nefertumm <nefertum.dev@protonmail.com>
Co-authored-by: AzerothCoreBot <azerothcorebot@gmail.com>
Co-authored-by: UltraNix <80540499+UltraNix@users.noreply.github.com>
Co-authored-by: ZhengPeiRu21 <98835050+ZhengPeiRu21@users.noreply.github.com>
Co-authored-by: Malcrom <malcromdev@gmail.com>
Co-authored-by: Kargatum <dowlandtop@yandex.com>
Co-authored-by: Skjalf <47818697+Nyeriah@users.noreply.github.com>
Co-authored-by: IntelligentQuantum <IntelligentQuantum@ProtonMail.Com>
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
Co-authored-by: Claudiodfc <54484196+claudiodfc@users.noreply.github.com>
Co-authored-by: ForesterDev <11771800+ForesterDev@users.noreply.github.com>
Co-authored-by: Giacomo Pozzoni <giacomopoz@gmail.com>
Co-authored-by: acidmanifesto <joshua.lee.betts@gmail.com>
Co-authored-by: temperrr <temperrr@users.noreply.github.com>
Co-authored-by: Bogir[rus] <m-1@bk.ru>
Co-authored-by: SilentCLD <sean@amaranthgaming.com>
Co-authored-by: Stefano Borzì <stefanoborzi32@gmail.com>
Co-authored-by: Kosiak <v.k.kosiak@gmail.com>
Co-authored-by: Francesco Borzì <borzifrancesco@gmail.com>
Co-authored-by: Voicot Kaczynski <88860233+febaut@users.noreply.github.com>
Co-authored-by: Grimgravy <sr.alansantos@hotmail.com>
Co-authored-by: TheDdraig <62179779+TheDdraig@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CORE Related to the core file-cpp Used to trigger the matrix build To Be Merged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Pit of Saron not begins Boss in Pit of Saron Can not kill
8 participants