Commit Graph
35788 Commits
Author SHA1 Message Date
ModoX cd585afac8 DB/Hotfixes: Update ptBR broadcast_text_locale to 41031
#27281
2021-11-17 11:59:47 +01:00
ModoX 09158e3e06 DB/Hotfixes: Update koKR broadcast_text_locale to 41031
#27281
2021-11-17 11:58:50 +01:00
ModoX 3f0b5697ff DB/Hotfixes: Update itIT broadcast_text_locale to 41031
#27281
2021-11-17 11:57:59 +01:00
ModoX 9e0df90f82 DB/Hotfixes: Update frFR broadcast_text_locale to 41031
#27281
2021-11-17 11:57:09 +01:00
ModoX 92e2742fc7 DB/Hotfixes: Update esMX broadcast_text_locale to 41031
#27281
2021-11-17 11:55:56 +01:00
ModoX 9370f6d85e DB/Hotfixes: Update esES broadcast_text_locale to 41031
#27281
2021-11-17 11:54:27 +01:00
ModoX c5469d9e6b DB/Hotfixes: Update deDE broadcast_text_locale to 41031
#27281
2021-11-17 11:52:15 +01:00
ModoX e6788fd981 DB/Hotfixes: Update broadcast_text to 41031
#27281
2021-11-17 11:49:02 +01:00
PolarCookie fa07f74db2 Spell/Script: Scourge Disguise and Haunting Phantoms (#22727)
(cherry picked from commit 66720e5fd94015e9884060bb66c3093484855880)
2021-11-16 22:00:58 +01:00
Shauren 3ba2547ec0 Core/Trainers: Remove unused define 2021-11-16 21:37:53 +01:00
Shauren f8dc4da282 Core/Players: Partial port of baebb2d602ca2f10159ea0039ec3a6d03155c3bd (just packet sending function)
(cherry picked from commit baebb2d602ca2f10159ea0039ec3a6d03155c3bd)
2021-11-16 21:35:11 +01:00
Killyana c1a144da45 DB/Quest: Emergency Protocol: Section 8.2, Paragraph D
Closes #22882

(cherry picked from commit f9988e2f885aecb40a69d180472ca9be7c0a88e6)
2021-11-16 21:17:38 +01:00
Treeston 549d5fea31 Core/Utils: some code style adjustments, 6d6077e follow-up
(cherry picked from commit 4c3af3b636d5e9279fb694c9d9a5a4422ad773d0)
2021-11-16 21:05:35 +01:00
Treeston 4f8fd56903 Core/Utils: Fix Unicode handling
(cherry picked from commit 6d6077e36fe9c5cb8ea8e4f981d637e72ee87037)
2021-11-16 21:04:53 +01:00
Giacomo Pozzoni 4177030dcf Scripts/Nagrand: Fix crash added in PR #22806 (#22878)
Fix crash added in PR #22806 happening in quest "Ruthless Cunning and Returning the Favor"

(cherry picked from commit cb136387218bc7a5473cf1ca6707ec1ba3b8c1c0)
2021-11-16 21:04:05 +01:00
PolarCookie 734084b9cf DB/Quest: Drak'Sotra quest chaining
Closes #22812

(cherry picked from commit a3c5af12d015b75183aca4accade7eeaf82de4e2)
2021-11-16 21:03:42 +01:00
Rynem db6800d0aa DB/Spell: Mounting a Stabled Campaign Warhorse
Closes #22866

(cherry picked from commit 2aea599f69507f90b376edd7b53e32229ceedf8a)
2021-11-16 21:02:39 +01:00
Shauren 9be92e218c Core/PacketIO: Fixed SMSG_BATTLE_PET_ERROR structure 2021-11-16 20:54:15 +01:00
Rynem a9c4137e91 DB/Spell: Necrocution
Closes #22865

(cherry picked from commit aefc96f2d8fe7d0cc6dd0bf579525f206e1a1bf7)
2021-11-16 20:52:16 +01:00
Rynem 3056282cf0 DB/Quest: Quest: Cruel's Intentions
Closes #22842

(cherry picked from commit 07002a2825331ed634adcead73e795e88bd64dd7)
2021-11-16 20:50:51 +01:00
Killyana e3230a4760 DB/Creature: Onslaught Warhorse
Closes #22868

(cherry picked from commit ec2cee0ab7a7273ff8380bb85437de41c197d684)
2021-11-16 20:44:51 +01:00
Shauren f3c1b27c26 Core/Units: Fixed crash happening when charm was removed by its own charmed AI during update
(cherry picked from commit c7445669e8577884fd512fe009f7d3da4cf0429a)
2021-11-16 20:40:05 +01:00
Aokromes acc9c2a582 DB/Creature: Fix Valithria Dreamwalker immunities
Closes #22753 by TheWinchesters

(cherry picked from commit 6658de05db8151fe026c0616abbdad3b9d252dbc)
2021-11-16 20:39:14 +01:00
jackpoz 9dcbccce26 Core/Misc: Fix vsnprintf usage in ASSERT()
Fix vsnprintf to follow standard definition and not some old VC++ behavior, not requiring to include the '\0' character in the count parameter

(cherry picked from commit eee1f2cadf8174caca4849c22ba1fb8f12fc9e08)
2021-11-16 20:37:27 +01:00
Giacomo Pozzoni d5c41d23e6 Core/Misc: Log more information in asserts (#22783)
* Core/Misc: Log more information in asserts

Add a new function GetDebugInfos() to types that could trigger an ASSERT() to easily include more useful information in crashlogs.
This is an initial commit that requires many more commits to implement the new GetDebugInfos() function in all required types.
If the type doesn't have the function, the global default one is picked which doesn't log anything.

* Core/Misc: Fix dynamic build

Add missing attribute for dynamic build

* Core/Misc: Fix gcc/clang build

* Core/Misc: Rename GetDebugInfos() to GetDebugInfo()

* Core/Misc: Fix FormatAssertionMessage() adding an extra '\0'

* Core/Misc: Add GetDebugInfo support to Unit

* Core/Misc: Add GetDebugInfo support to Creature

* Core/Misc: Add more info to GetDebugInfo for Creature

* Core/Misc: Add GetDebugInfo support to GameObject

* Core/Misc: Add GetDebugInfo support to Player

* Core/Misc: Add more GetDebugInfo info

* Core/Misc: Add GetDebugInfo support to Item

* Core/Misc: Add GetDebugInfo support to Bag

* Core/Misc: Add GetDebugInfo support to Transport

* Core/Misc: Add GetDebugInfo support to TempSummon, Minion, Guardian, Pet

* Core/Misc: Add GetDebugInfo support to Map, InstanceMap

* Core/Misc: Add GetDebugInfo support to Spell

* Core/Misc: Fix build warning

* Core/Misc: Add GetDebugInfo support to Aura

* Core/Misc: Add GetDebugInfo support to UnitAI

(cherry picked from commit 9a924fb9d557434c5a2e4020c80db6e6bfe466ad)
2021-11-16 20:36:58 +01:00
ModoX aea3022e89 DB/POI: Update for 9.1.5.41031 2021-11-16 19:54:56 +01:00
Treeston 5b45253f57 Core/Misc: Explicit typing for SpellAttrN enums, add nicer text to UNKs, and restore some relevant info from old comments. Final one of these.
(cherry picked from commit 3acba6dded14afdf84f2ab51ca3b6cec92bdb092)
2021-11-16 19:52:57 +01:00
Fabian 3f656e0779 DB/Class: Update monk player_classlevelstats 2021-11-16 19:22:55 +01:00
Killyana 1ec9a4d628 DB/Creature: Njorndar Proto-Drake
Closes  #22853

(cherry picked from commit df641e993ac4e058c55ec97cceb19cf397a51105)
2021-11-16 16:33:12 +01:00
PolarCookie 0f55e07330 DB/Item: Onslaught Gryphon Reins drop rate
Closes #22852

(cherry picked from commit 982b0d522564b0e768744f63c269025a1b60f9b2)
2021-11-16 16:30:02 +01:00
PolarCookie 423ce27706 DB/Quest: The Amphitheater of Anguish: Yggdras!
Closes #20780
Closes #22752

(cherry picked from commit 271dd09eb0800f6cf685eb11f3c287a67f354cc5)
2021-11-16 16:28:35 +01:00
Killyana 8c6995e997 DB/GameObjects: Add missing doors to AQ40
(cherry picked from commit 1ba09572b5a49d5cd247cdca47109d3325ec12f3)
2021-11-16 16:27:44 +01:00
AlcDenat b9c7b89c94 DB: Achievement Reward Locales deDE
Closes #22761

(cherry picked from commit e6f9f182019b1e194d840e78c4b2583b2b57b0bd)
2021-11-16 16:26:04 +01:00
Killyana 5721a9739e DB: Fix some DB errors
(cherry picked from commit e7d07dd5f75ae6fb0cd6e2c5798a2907c1636e71)
2021-11-16 16:24:38 +01:00
AlcDenat 2c1a823bc9 DB: Pilgrim's Bounty quest OfferReward, RequestItems deDE locales
Closes #22823

(cherry picked from commit 05a6a5ce99dbc0344092cd17952db46e6c866ef2)
2021-11-16 16:22:43 +01:00
Killyana cfa66bdfcb DB/Quest: Into the Draenethyst Mine add some missing spawns
Closes#22808

(cherry picked from commit b4427498c034ee850beac36280452869e15b00b2)
2021-11-16 16:21:46 +01:00
PolarCookie 7d741473c6 DB/Quest: A Dire Situation
Closes #22807

(cherry picked from commit 2a54373151f8d0db70db913eb9adf39af483660b)
2021-11-16 16:18:08 +01:00
Elarose a7d7d4bb34 DB: Aq 40 Misc
Closes #22805

(cherry picked from commit 79ff72d268c67279056a1bf74533b6edb44b48db)
2021-11-16 16:16:41 +01:00
PolarCookie 1c02f00210 DB/Quest: Gurf's Dignity
Closes #22796

(cherry picked from commit 97a6b6dd64a9ab4c67bfeb0f2b21d2e3d97ae91a)
2021-11-16 16:11:17 +01:00
TheWinchesters b32c8829eb DB/Loot: Koralon's loot (10n)
Closes #22777

(cherry picked from commit d10dce6dac74a9e6c35823d56310864651b86439)
2021-11-16 16:08:39 +01:00
Hobbilis d18c07413e DB/Creature: Dragonflayer creatures
Closes #22766

(cherry picked from commit 7dbccdaf27aafdbdbd4dbeb79ea78ebfcda69331)
2021-11-16 16:06:49 +01:00
PolarCookie 94063a55ca DB/Quest: RoB, AoA kill credit targets (Ring of Blood, Amphitheater of Anguish quests)
Closes #22751

(cherry picked from commit cdbc9dc1afd9d67e8594deddee7e7ad84c6448a3)
2021-11-16 16:05:56 +01:00
ZenoX92 3f1eacaaf1 DB/Quest: The Grateful Dead
Closes #22750

(cherry picked from commit beb4a11b480f708f7faecf7f602168ba3e73afdf)
2021-11-16 16:03:58 +01:00
Killyana 887f0b1065 DB/Creature: Remove Superior Healing Ward Totems spawns
Closes #22749

(cherry picked from commit 2d2263db3dfc66ecf2a0b61db7c57ca5be7eaab1)
2021-11-16 16:00:28 +01:00
ZenoX92 bb7e8d6699 DB/Quest: This Is Going to Be Hard (Part 3)
Closes #22748

(cherry picked from commit d511cbaee75d0457e1b8455066c9a2037777116c)
2021-11-16 15:59:14 +01:00
Shauren b981606575 Core/PacketIO: Fixed SMSG_LEVEL_UP_INFO structure 2021-11-16 15:53:40 +01:00
ZenoX92 3e1baf5bd9 DB/Texts: Burning Blade Toxicologist
Closes #22747

(cherry picked from commit ee07ba7afa532099df0ab9981a1fab0bd6cc4ea4)
2021-11-16 15:49:41 +01:00
ZenoX92 b62490ff64 DB/Gossip: Chemist Fuely
Closes #22746

(cherry picked from commit bf60d7c597241fcafeacbfd51fd08d553ba0ec17)
2021-11-16 15:46:18 +01:00
ZenoX92 4f0ecc6e7c DB/Gossip: Eva Sarkhoff
Closes #22745

(cherry picked from commit 4d4e2887f48cbc856024e53ae9b625b234693ecc)
2021-11-16 15:39:47 +01:00
ZenoX92 2a13624b10 DB/Quest: Report Back to Fizzlebub
Closes #22744

(cherry picked from commit 21fe812e5073dd7fc3ed3516ce8625c465f068ef)
2021-11-16 15:37:38 +01:00