aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-05-05Core/Auras: Fixed possible crash on login with ↵Shauren
SPELL_EFFECT_APPLY_AREA_AURA_SUMMONS
2021-05-04Core/Chat: Updated item chat link format to 9.0Shauren
2021-05-03Core/Auras: Add missing SPELL_AURA_COMPREHEND_LANGUAGE check for serverside ↵Shauren
chat translations
2021-05-03Core/Chat: Chat translation improvementsShauren
* Remove hyperlinks from translated chat messages * Implement case preservation rules depending on receiver client locale
2021-05-03Core/Chat: Allow incorrect spell/skill language assignments to mirror client ↵Shauren
behavior
2021-05-03Core/Chat: Apply chat translation also to messeges sent to selfShauren
2021-05-03Core/Chat: Only exclude LANG_UNIVERSAL, LANG_ADDON and LANG_ADDON_LOGGED ↵Shauren
from chat translations instead of all languages that don't have a skill
2021-05-03Core/Chat: Apply language translations to creature chatShauren
2021-05-03Core/Chat: Load chat language data from db2 and implement serverside chat ↵Matan Shukry
translations
2021-05-01Core/Grids: Move packet sending functionality out of MessageDistDeliverer ↵Shauren
and into separate, customizable class and unify LocalizedPacketDo, LocalizedPacketListDo as generic localizable action
2021-04-30Dynamic linking build fixShauren
2021-04-30Core/Grids: Allow customizing packets sent with MessageDistDeliverer and ↵Shauren
MessageDistDelivererToHostile depending on receiver * Switch combat log sending to that implementation
2021-04-29Core/DataStores: Load LanguageWords.db2 and Languages.db2 for future useMatan Shukry
2021-04-29Core/Spells: Only interrupt spells with interrupt flag Combat when spell ↵Shauren
also has SPELL_ATTR0_CANT_USED_IN_COMBAT attribute
2021-04-27Core/Entities: fix crashariel-
- m_currentSpells and spell would be different in case cancelation of a channeled spell would remove the aura, and aura scripted to cast another channeled spell on remove - In the above situation, we would lose reference of currentSpell and remove reference from wrong one, this was fixed by clearing the pointer before spell cancelation. Closes #20172 (cherry picked from commit 5e284d4b3826cd345193298688c1d2bc5b3c8f72)
2021-04-27Core/AI: UnitAI.h trimming part two. WaypointX methods kicked upstairs to ↵Treeston
CreatureAI.h. (cherry picked from commit 9c1e675590c1fa61a80b3f2c856aaf97c549f202)
2021-04-27Core/AI: Kick Gossip functions upstairs, from UnitAI to CreatureAI - they ↵Treeston
only make sense for Creatures anyway. Also change a very ugly hack in GetDialogStatus. Ew. (cherry picked from commit eacfa9d89afcfad0cbd0715c8a84890c3ccd1c74)
2021-04-27Core/Conversations: Fix conversation data handling (#26375)funjoker
2021-04-26Core/SAI: Don't clear stored pathid if it changed after processing waypoint ↵Matan Shukry
events (#26334)
2021-04-25Tools/vmap_extractor: Unify version printed to console with shared vmap ↵Shauren
version definition
2021-04-25Tools/vmap_extractor: Fix MOVX implementation for "small" vmaps (-s or no ↵Shauren
command line argument)
2021-04-25Core/Vmaps: Extract more doodad setsShauren
2021-04-25Core/Vmaps: Prepare vmaps for reading new WMO chunk - MOVX, replacement for ↵Shauren
MOVI using larger data type (currently unused in 9.0.5 client)
2021-04-25Core/Vmaps: Reduce memory used by vmaps, part 2Shauren
2021-04-25Core/Vmaps: Reduce memory used by vmaps (and their size, slightly)Shauren
2021-04-22Core/Spells: Fix feed pet effect after wrong merge conflict resolutionShauren
2021-04-22Scripts/Spells: Implemented monk stagger (#26295)Matan Shukry
2021-04-22Core/Spells: Removed extra health from feed pet (#26305)Matan Shukry
2021-04-21Scripts/Spells: Implemented discipline priest PvP talent TrinityShauren
2021-04-21Scripts/Spells: Implemented AtonementMatan Shukry
* Also renamed spell_priest_spirit_of_redemption to spell_pri_spirit_of_redemption
2021-04-21Core/Spells: Added spell value duration to modify aura duration of a ↵Matan Shukry
specific spell cast
2021-04-21Core/Items: Equipping rings/trinkets/weapons by right clicking them in bags ↵Shauren
will now swap the lower item level equipped one instead of first slot
2021-04-21Core/Items: Don't update average item level when obtaining/destroying ↵Shauren
non-equippable items
2021-04-21Core/Items: Calculating item level + organized iterating over items (#26276)Matan Shukry
* Unified iterating player items into a single function Co-authored-by: Shauren <shauren.trinity@gmail.com>
2021-04-20Core/Misc: Fix crash when loading playerchoice_response (#26454)MistiX
2021-04-20Core/Misc: New function in GameTime allowing selecting std::chrono clock ↵Shauren
type by template argument
2021-04-19Core/Spells: Implement priest holy words + modify cooldown for a charge (#26270)Matan Shukry
Co-authored-by: Shauren <shauren.trinity@gmail.com>
2021-04-18Core/PacketIO: Implemented SMSG_SPELL_ABSORB_LOGShauren
2021-04-17Core/Auras: Implemented SPELL_AURA_SCHOOL_ABSORB_OVERKILL (#26269)Matan Shukry
2021-04-16Core/Crash reporting: Add support to char* arraysjackpoz
Add support to char* array showing the string value instead of the pointer address (cherry picked from commit 4c0c4ab271ddc2d200cd9ccda98e16553dcaf391)
2021-04-16Core/Misc: Removed unneeded checksjackpoz
(cherry picked from commit 513e153a135ab51941fafe452aaa4e91faa285a0)
2021-04-16Core/AI: Some more refactoring prep for #19930. CreatureAI::EnterCombat is ↵Treeston
now called CreatureAI::JustEngagedWith. There's also two new methods on UnitAI, though they're never invoked right now. (cherry picked from commit 6113b9dec2e0081c36c36c2974a28ed0693bc601)
2021-04-16Core/Misc: Fix cherry-pick errorsShauren
2021-04-16[3.3.5] CastSpell unclusterfucking (that's a word now) (#21123)Treeston
Core/Spell: The giant CastSpell unclusterfucking (that's a word now) of this generation. - CastSpell now always takes three arguments - target, spellId, and a struct containing extra arguments - This struct (CastSpellExtraArgs, see SpellDefines.h) serves as a conglomerate of every previous combination of the 20 billion different CastSpell overloads, all merged into one - It has some great utility constructors - check them out! All of these can be used to implicitly construct the ExtraArgs object. - A gajillion refactors to make everything behave the way it always has (cherry picked from commit d507a7e3388382960108b24143da48e5f912b4a7)
2021-04-15Move some packets processing to map context (#18638)xinef1
Core/Network: Allow some packets to be processied in map context (cherry picked from commit 2286da2166dda037f36a6cccfbafb7d5a6672369)
2021-04-15Core/Entities: Fix some weird movement due to los issues (#21125)Jeremy
* Core/Entities: Fix some weird movement due to los issues - Made LoS check use collisionHeight instead of midsection. Value was too low. - Gnomes will now have a breath bar more quickly than for example a tauren. - Changes have been made to checking for ground z as well, some tweeking might be needed but removed most of the scattered +2.0f/+0.5f/we * Add 0.05f to isInAir check in Creature::UpdateMovementFlags (cherry picked from commit e42903ec16f4849b71bc8736e3151a1e11d3cd25)
2021-04-15Core/Scripts: fix codestyleariel-
(cherry picked from commit e2a97ba7e789748aaa46ace153382573fd7d7df5)
2021-04-15Core/Scripts: Val'anyr Hammer of Ancient Kings should proc only with ↵Keader
effective heal (cherry picked from commit 502864e86c0a29ac4e64b20ee0c2e853cecd0401)
2021-04-15Core/Scripts: remove Quel'Delar from player inventory during "The Halls Of ↵ariel-
Reflection" quests (24480, 24561) (cherry picked from commit d13999c8d6a390914907d1d8343d72c06195bf10)
2021-04-15Core/Scripts: prevent Arthas in CoS losing his gossip flag and halting ↵ariel-
instance progress (cherry picked from commit 720ba9e973f7af5a84d7e61a1eaa716a65f41e92)