aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-02-16Core/Misc: Fix static analysis issuesjackpoz
Fix static analysis issues reported by Coverity
2019-02-16Refactor SendSysMessage, SendGlobalSysMessage, SendGlobalGMSysMessage (#23029)Heaven31415
2019-02-16Scripts/Scarlet Enclave: Stable Master Kitrik's spell Repo (#23023)Sorikoff
2019-02-15Fix buildShauren
2019-02-15Fix build for older compilersShauren
2019-02-15Core/Misc: Added lambda support to EventProcessorShauren
Closes #22909
2019-02-15Core/Scripts: Change PlayerScript and CreatureScript inheritance (#23048)Giacomo Pozzoni
Remove UnitScript from PlayerScript and CreatureScript classes as that's how the original system that was PR'd worked, see https://github.com/TrinityCore/TrinityCore/pull/7867 for reference. Please note these are used as global hooks and should really just invoke stateless functions. If you need to hook methods from PlayerScript/CreatureScript and UnitScript, just define 2 different scripts (this is how the original system worked and how it was designed to work)
2019-02-15[3.3.5] Commands: lookup player shows which character is online (#23039)TheWinchesters
* Show 'online' for every online player in lookup player commands
2019-02-153.3.5 threat assert (#23034)Giacomo Pozzoni
* Core/Creature: Change assert about Threat to log
2019-02-15Shared/Utilities: Handle string format exceptionsGiacomo Pozzoni
Handle StringFormat() exceptions in case of malformed string format to avoid causing unhandled exception crashes
2019-02-13Creature/Script: Move "Bartleby" script to SAIRushor
2019-02-08Core/Misc: Add categories to 3 logsAokromes
2019-02-08Core/Spells: Add categories to 2 logsAokromes
2019-02-08Core/Entities: Add categories to 2 logsAokromes
Closes #22922
2019-02-06Core/MMaps: Fix infinite loop in Detourjackpoz
Fix an infinite loop in Detour happening in Dalaran Sewers. This is more of an emergency patch until we figure out why dtNodes have a circular reference (A -> B -> C -> A) happening quite often in this place
2019-02-05Core/Misc: Fix issues reported by static analysisjackpoz
Fix issues reported by Coverity Scan
2019-02-05Core/Misc: Fix issues reported by dynamic analysisjackpoz
Closes #23021
2019-02-02Core/Group: Fix memory leakjackpoz
Fix memory leak happening when disbanding a group with an ongoing roll. Please note this is not blizz-like but at least we don't leak memory anymore.
2019-02-02Scripts/ScarletEnclave: Fix no pch buildjackpoz
2019-02-02Scripts/Scarlet Enclave: Grand Theft Palomino (#22967)Sorikoff
* Grand Theft Palomino * Cosmetic issues * Address CR
2019-02-02Core/Movement: Implement move time skipped handler (#22994)Chaouki Dhib
* Implement CMSG_MOVE_TIME_SKIPPED handler and move it to MovementHandler.cpp * Add better error handling * Update MovementHandler.cpp
2019-02-02Core/Spells: Fix assert triggeredjackpoz
Fix assert triggered when a spell would trigger another spell in OnEffectHitTarget that would kill the aura owner, then processing the main spell effects. The triggered spell can kill the aura owner, changing its death state to CORPSE and removing auras created. Fix #21856 Ref 518e6299ca08a362bc3709daaaa5e5d5633d1bf1
2019-02-02DB/Quest: Sniff Out the EnemySorikoff
Closes #23006
2019-02-01Scripts/Magister Terrace: Fixed a enum mistakeKeader
2019-01-30Core/Misc: Fixed shaman elementals and magister terrace first boss accessKeader
2019-01-28Scripts/Utgarde Keep: Fix Ingvar Evading (again)Keader
UNIT_FLAG_NON_ATTACKABLE makes ingvar become a invalid target and lose threatlist, so me->IsThreatened() will return false. We dont need it at all, since UpdateAI will handle evade already.
2019-01-28Scripts/Temple of Ahn Qiraj: Scripted doors of AQ40Keader
Doors added in https://github.com/TrinityCore/TrinityCore/commit/1ba09572b5a49d5cd247cdca47109d3325ec12f3
2019-01-28Make Travis Happy :)Keader
2019-01-28Scripts/Magister Terrace: Update InstanceScript and more fixesOvah
Cherrypicked of https://github.com/Ovahlord/TrinityCore/commits/4.3.4
2019-01-28Build fix ³Keader
2019-01-28Build fix²Keader
2019-01-28Build fixKeader
2019-01-28Scripts/Magister Terrace: Felblood Kaelthas rewriteOvah
Cherrypick of https://github.com/Ovahlord/TrinityCore/commit/ae440400aaf90de11cf92010839ab98a8403c003
2019-01-28Scripts/Black Temple: Mother Shahraz fatal attraction need be randomKeader
Higher distance showed in my sniffs is 48 yards (rounding 50 yards). If someone find more then that, please let me know. Ty killerwife
2019-01-28Scripts/Black Temple: Fixed some issues in Illidari CouncilKeader
Ty killerwife for all help :)
2019-01-27Tools/MMaps: Allow to specify different Recast settings for different mapsjackpoz
Allow to specify different Recast settings for different maps, currently handled in GetMapSpecificConfig() as a switch statement. Set walkableRadius to 0 in Blade's Edge Arena (Map ID 562) so the pets can walk on the thin rope between the bridge and the pillar.
2019-01-26Dep/Recast: Update recastnavigation to ↵jackpoz
https://github.com/recastnavigation/recastnavigation/commit/14b2631527c4792e95b2c78ebfa8ac4cd3413363 Rebuilding mmaps IS required
2019-01-21Core/MapScripts: Allow GameObjects to be caster of SCRIPT_COMMAND_CAST_SPELLjackpoz
2019-01-19Core/Spells: Fix assert triggeredjackpoz
Fix assert triggered when a spell would trigger another spell in OnEffectHitTarget that would kill the target, then processing the main spell effects. The triggered spell can kill the target, changing its death state to CORPSE and removing auras created. Fix #22306
2019-01-19Core/Misc: Fix clang 6.0 warningsjackpoz
Ported from e9bcae1fada64bc3400c3204f7365edcecd640cc
2019-01-18Core/Misc: Update 85e3169fbd7b2da70e0f054399f4db64ded36325 about SOAPjackpoz
Change again how SOAP is stopped if SOAP successfully binds but worldserver fails to bind its sockets. A crash remains if SOAP fails to bind because it calls exit() and that triggers asserts everywhere.
2019-01-18Core/Networking: Set SO_REUSEADDR on *nix platformsjackpoz
2019-01-18Core/Misc: Fix shutdown with SOAP enabledjackpoz
Fix worldserver entering a loop when having SOAP enabled but failing to bind both SOAP and worldserver listened socket. SOAP thread would keep trying to bind the socket over and over checking World::IsStopped() condition that was never set to true
2019-01-17Core/Misc: update SMSG_UPDATE_WORLD_STATE usesccrs
2019-01-17Server/Packets: port WorldStatePackets from masterccrs
2019-01-16Scripts/ICC: npc_suppresser correctionsccrs
closes #22908
2019-01-16Core/Creatures: Only allow class and pet trainers to reset talents and teach ↵Shauren
dual spec Closes #22953
2019-01-16Core/Objects: increase sight range of objects & correct general default ↵Kittnz
visibility distance (#22891) This can be used for anything really. Note: This does not make the object active. #21111 #21681
2019-01-15Warning fixShauren
2019-01-15Core/Auth: Implement additional version check for modified clients during loginShauren