aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-11-19Core/BattlePets: BattlePetError enum class (#27286)Meji
2021-11-19Core/Quests: Fixed loading quest greeting localesShauren
Closes #27292
2021-11-18DB/Spell: fix mistake in Blood Draining's CheckProc and remove Attack Power ↵Rynem Storm
scaling (#22862) (cherry picked from commit a057d26f20ef2d18fa276534d727b03a6b5a2931)
2021-11-18Core/Spells: Fixed crash with some gameobject spell castersShauren
(cherry picked from commit 755133d8609c424c49be4bbe3bb4ec1ed02195f8)
2021-11-18Quest/Script: Kodo RoundupKillyana
Fix faction issue and handle the gossip correctly via the script (cherry picked from commit 5e73647c84338705a2b45b95705c08ea4a5e2668)
2021-11-18Scripts/Misc: Fix LoadMinionData() dynamic analysis issuesGiacomo Pozzoni
Fix issues reported by Address Sanitizer about LoadMinionData() calls on arrays that don't end with a {0, 0} pair. (cherry picked from commit 08dcee0cf9a56944027d3f65b7fd5c4a4959761c)
2021-11-18Core/Spell: Fixed some negative spells showing as positiveKeader
Closes #22840 Revert 9ecce3319216ca2156441e661a0d7a3a120f4ab9 and 7611242530e7037ecab9bc8a619628128b22fb6f Update #22757 (cherry picked from commit a0de602d38ffd1ddd9efdde62b24207709979739)
2021-11-18Core/Spells: Fixed unapplying rockbiter weaponShauren
Closes #22528 (cherry picked from commit f93a23adc5ee2e0759c5766816a7885bb71e3f27)
2021-11-18Scripts/Icecrown Citadel: Some fixes for Valithria Dreamwalker's encounterKeader
Closes #22754 #21887 #17882 Ty sirikfoll for all help Bonus fixes: Abomination letting worms when fight end, visual missing, archmages stop respawn if corpse despawn (cherry picked from commit dd81978f432f9c1ecb72ebcadcb5a50042e005ad)
2021-11-18Core/Scripts: Move some spells to scripts (#22332)DanVS
(cherry picked from commit 8051ff13dfcf3819b58adfcec1608c08dcbcd080)
2021-11-18That's Abominable for the 3 other quests, and knockbacks for all. (#22127)PolarCookie
(cherry picked from commit fb19f7be1f103b6d647e6d7d2aeabdfaadbc0631)
2021-11-18Core/Spells: Malleable Goo need be negativeKeader
Closes #22757 (cherry picked from commit 9ecce3319216ca2156441e661a0d7a3a120f4ab9)
2021-11-18Core/Creature: Profession trainer fixes (PR #22904)Ghaster
Closes #22903 (cherry picked from commit 19791a35df11e2c5c42ee437bfc13466c708ea43)
2021-11-18Scripts/The Steamvault: Fixed Chambers Access Panel and Main Chambers DoorKeader
Closes #21067 Ty Kittnz, killerwife, Aokromes (sniffs) (cherry picked from commit b283565d8adb394862ea2affd2af497bac6cdbcb)
2021-11-18Core/Handlers: fix ".whisper on" with opposite faction/low leveljackpoz
Closes #22283 (cherry picked from commit f11117584d0b787bbf36ae61dad2b46e559b0953)
2021-11-18Scripts/Commands: Fix crash caused by .set npc model (#22877)Giacomo Pozzoni
* Scripts/Commands: Fix crash caused by .set npc model Fix crash caused by .set npc model with invalid model id (cherry picked from commit 20ea24bf5ccf165ce19139d1f7ec7c650719eb68)
2021-11-18Core/Spells: Fixed ErrorCube spell missilesShauren
(cherry picked from commit 3b5014fdae1b57add7fd204a9f9f10f3c2092b83)
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-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-16Core/PacketIO: Fixed SMSG_BATTLE_PET_ERROR structureShauren
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-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-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-16Core/PacketIO: Fixed SMSG_LEVEL_UP_INFO structureShauren
2021-11-16Core/Spells: Implemented SummonPropertiesFlags: UseSummonerFaction & ↵Meji
IgnoreSummonerPhase (#27273)
2021-11-16Update zone_borean_tundra.cppAokromes
(cherry picked from commit 6851ba638d35c31ebe232c30a4a57f5755104cce)
2021-11-16Quest: Ruthless Cunning and Returning the Favor (#22806)PolarCookie
* Ruthless Cunning and Returning the Favor * no more magic numbers * now with scripted ai and condition * travis * more travis * jackpoz * now with no banner spellscripts * typo * Rename 9999_99_99_99_world.sql to 2018_12_03_00_word.sql (cherry picked from commit 9d93504f34b112eb2403381e61deff1559771cd3)
2021-11-16Core/GameEvent: weekend xp rate (#17782)Aokromes
* Core/GameEvent: weekend xp rate by kline * Update to recent code * compile fix try things of copy and paste 4 years old code xd * more code update * forgot to change this * Update worldserver.conf.dist * Added function to calculate weekend event xp rates By greenbagels * Cleaning using scripts * Implement daymask and rename variables etc. * Rename script file weekend -> boosted * Update src/server/game/World/World.cpp Co-Authored-By: Aokromes <Aokromes@users.noreply.github.com> * Fix xp multiplier not applying to quest rewards * Disable xp boost script when no boosted days selected (cherry picked from commit 538c5b86873a4c57e1eb37f0c81c2a7b4552ebc1)
2021-11-16Core/Misc: Update description text for SpellAttr8-14Shauren
2021-11-16Core/Misc: Update description text for SpellAttr6 and SpellAttr7Treeston
(cherry picked from commit cd7b0364851b928b07dfc091fd4defb75fed59f8)
2021-11-16Core/Misc: Update description text for SpellAttr5 (I'm back, baby!)Treeston
(cherry picked from commit 9309988a05bca305e794e58bdcdb213747004370)
2021-11-16Core/Scripts - The Eye: Fix Kael'thas Sunstrider Mind Control, limit ↵Gildor
MaxAffectedTargets to 3 (#22828) Closes: #22826 (cherry picked from commit 0ee8a77dce32a5bc057bd4c8caa309be6963e7bf)
2021-11-15Core/Objects: properly use UPDATETYPE_CREATE_OBJECT2 when creating brand new ↵Ovah
objects in all cases. Closes #22419 (#22816) (cherry picked from commit fb1d568fbaedb2198ee6a39aac669533d8924c82)
2021-11-15Core/Misc: Update description text for SpellAttr4Treeston
(cherry picked from commit 8836fc3903d55b85dc451ba928cea490659d8a5d)
2021-11-15Core/Misc: Update description text for SpellAttr3Treeston
(cherry picked from commit 50f78e686c258ec2b84e76d13e1c24025eada388)
2021-11-15Core/Misc: Update description text for SpellAttr2Treeston
(cherry picked from commit 9b4feaacfab77dd5739154c9121ba35bf73e2a90)
2021-11-15Core/Misc: Update description text for SpellAttr1Treeston
(cherry picked from commit 8cac5feb58a93d498ce4ec341c66ff41a7b7077f)
2021-11-15Core/Misc: Update description text for SpellAttr0 to match actual behaviorTreeston
(cherry picked from commit b69ee07d502f25dc7d9279665440749009414c6d)
2021-11-15DB/Strings: remove some now-unused language entriesTreeston
(cherry picked from commit 0068813ef92bf93db2642d6a1eaf7c082eaa5d2d)
2021-11-15Scripts/Utgarde Keep: Fixed Ingvar evade in phase 2 (one more time)Keader
Closes #21264 ScheduleEvents need happens after remove ImmuneToPc, or it will cause evade. (cherry picked from commit f1a1acdc89a6521fddca98cc8ef8d6e7ed0b9495)
2021-11-15Scripts/ToC: Fixed Twin Valkyr stucking in progress and added hoverKeader
Closes: #22755 Update: #20961 (cherry picked from commit 4c6f0eaa8d2b680c98ba125b5c90748f31928eda)
2021-11-15Core/AI: Add some checks to catch if the AI changes mid-update for players. ↵Treeston
Tag #22731 #22629. (cherry picked from commit d8fee3c46b70fed660aec905a496e56d6a327aaf)
2021-11-15Core/Creatures: Changed creatures to become tagged by player doing any ↵PolarCookie
action that causes creature aggro (apart from distance) (#22759) * This was introduced in patch 3.0.8 (cherry picked from commit f2df802c500e3878ba431d1be0a57ce293983121)
2021-11-15Core/Spells: fix issues with delayed spells and auras (#22382)PolarCookie
* Core/Spells: fix issues with delayed spells and auras * Make Travis Happy (cherry picked from commit a0999744ef02bf1494233411d873552d3d564d8a)
2021-11-15Core/Entities: Handle partial state change for pets (#22014)DanVS
* handle partial state change * range-based for loop * fixes * readability * break (cherry picked from commit ae22fd6d7489e11d5bd208e90c1a5b6d27b81e4d)