aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-17DB/Hotfixes: Update hotfixes 41031funjoker
2021-11-17DB/Misc: Update quest and creature locales for zhTWModoX
Closes #27281
2021-11-17DB/Misc: Update quest and creature locales for zhCNModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for ruRUModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for ptBRModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for koKRModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for itITModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for frFRModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for esMXModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for esESModoX
#27281
2021-11-17DB/Misc: Update quest and creature locales for deDEModoX
#27281
2021-11-17DB/Templates: Update quest and creature template data to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update zhTW broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update zhCN broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update ruRU broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update ptBR broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update koKR broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update itIT broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update frFR broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update esMX broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update esES broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update deDE broadcast_text_locale to 41031ModoX
#27281
2021-11-17DB/Hotfixes: Update broadcast_text to 41031ModoX
#27281
2021-11-16Spell/Script: Scourge Disguise and Haunting Phantoms (#22727)PolarCookie
(cherry picked from commit 66720e5fd94015e9884060bb66c3093484855880)
2021-11-16Core/Trainers: Remove unused defineShauren
2021-11-16Core/Players: Partial port of baebb2d602ca2f10159ea0039ec3a6d03155c3bd (just ↵Shauren
packet sending function) (cherry picked from commit baebb2d602ca2f10159ea0039ec3a6d03155c3bd)
2021-11-16DB/Quest: Emergency Protocol: Section 8.2, Paragraph DKillyana
Closes #22882 (cherry picked from commit f9988e2f885aecb40a69d180472ca9be7c0a88e6)
2021-11-16Core/Utils: some code style adjustments, 6d6077e follow-upTreeston
(cherry picked from commit 4c3af3b636d5e9279fb694c9d9a5a4422ad773d0)
2021-11-16Core/Utils: Fix Unicode handlingTreeston
(cherry picked from commit 6d6077e36fe9c5cb8ea8e4f981d637e72ee87037)
2021-11-16Scripts/Nagrand: Fix crash added in PR #22806 (#22878)Giacomo Pozzoni
Fix crash added in PR #22806 happening in quest "Ruthless Cunning and Returning the Favor" (cherry picked from commit cb136387218bc7a5473cf1ca6707ec1ba3b8c1c0)
2021-11-16DB/Quest: Drak'Sotra quest chainingPolarCookie
Closes #22812 (cherry picked from commit a3c5af12d015b75183aca4accade7eeaf82de4e2)
2021-11-16DB/Spell: Mounting a Stabled Campaign WarhorseRynem
Closes #22866 (cherry picked from commit 2aea599f69507f90b376edd7b53e32229ceedf8a)
2021-11-16Core/PacketIO: Fixed SMSG_BATTLE_PET_ERROR structureShauren
2021-11-16DB/Spell: NecrocutionRynem
Closes #22865 (cherry picked from commit aefc96f2d8fe7d0cc6dd0bf579525f206e1a1bf7)
2021-11-16DB/Quest: Quest: Cruel's IntentionsRynem
Closes #22842 (cherry picked from commit 07002a2825331ed634adcead73e795e88bd64dd7)
2021-11-16DB/Creature: Onslaught WarhorseKillyana
Closes #22868 (cherry picked from commit ec2cee0ab7a7273ff8380bb85437de41c197d684)
2021-11-16Core/Units: Fixed crash happening when charm was removed by its own charmed ↵Shauren
AI during update (cherry picked from commit c7445669e8577884fd512fe009f7d3da4cf0429a)
2021-11-16DB/Creature: Fix Valithria Dreamwalker immunitiesAokromes
Closes #22753 by TheWinchesters (cherry picked from commit 6658de05db8151fe026c0616abbdad3b9d252dbc)
2021-11-16Core/Misc: Fix vsnprintf usage in ASSERT()jackpoz
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-16Core/Misc: Log more information in asserts (#22783)Giacomo Pozzoni
* 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-16DB/POI: Update for 9.1.5.41031ModoX
2021-11-16Core/Misc: Explicit typing for SpellAttrN enums, add nicer text to UNKs, and ↵Treeston
restore some relevant info from old comments. Final one of these. (cherry picked from commit 3acba6dded14afdf84f2ab51ca3b6cec92bdb092)
2021-11-16DB/Class: Update monk player_classlevelstatsFabian
2021-11-16DB/Creature: Njorndar Proto-DrakeKillyana
Closes #22853 (cherry picked from commit df641e993ac4e058c55ec97cceb19cf397a51105)
2021-11-16DB/Item: Onslaught Gryphon Reins drop ratePolarCookie
Closes #22852 (cherry picked from commit 982b0d522564b0e768744f63c269025a1b60f9b2)
2021-11-16DB/Quest: The Amphitheater of Anguish: Yggdras!PolarCookie
Closes #20780 Closes #22752 (cherry picked from commit 271dd09eb0800f6cf685eb11f3c287a67f354cc5)
2021-11-16DB/GameObjects: Add missing doors to AQ40Killyana
(cherry picked from commit 1ba09572b5a49d5cd247cdca47109d3325ec12f3)
2021-11-16DB: Achievement Reward Locales deDEAlcDenat
Closes #22761 (cherry picked from commit e6f9f182019b1e194d840e78c4b2583b2b57b0bd)
2021-11-16DB: Fix some DB errorsKillyana
(cherry picked from commit e7d07dd5f75ae6fb0cd6e2c5798a2907c1636e71)
2021-11-16DB: Pilgrim's Bounty quest OfferReward, RequestItems deDE localesAlcDenat
Closes #22823 (cherry picked from commit 05a6a5ce99dbc0344092cd17952db46e6c866ef2)