aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-26Core/Matchmaking: Fix Discard Time overflow on server startpjasicek
Description: When server starts and RatingDiscardTimer config is set to some value, discardTime being unsigned int overflows for the time of RatingDiscardTimer value and causing all rated arena matches ignore matchmaking rating for that time. (cherry picked from commit 6a637f6b1c186eb15373fce443d729dcc74e5361)
2015-06-26Core/Player: Fix resurrection exploitjackpoz
Fix an exploit that allowed to resurrect even if corpse was not in range (teleport hack was required too) (cherry picked from commit 83cf1e6aec0594f7d92bdebf52239867c3fd3abc) Conflicts: src/server/game/Entities/Player/Player.h
2015-06-26Merge pull request #14780 from mik1893/immune_to_npc_flagCarbenium
Core/Creature: UNIT_FLAG_IMMUNE_TO_NPC check only vs non-player targets (cherry picked from commit 125d839a1878d3d3d0cbc193298f385560e268c9)
2015-06-26Core/CrashHandler: Make crashhandler tread-safejackpoz
Handle only 1 exception in the whole process lifetime and create only 1 crash report. (cherry picked from commit 1a5051a9c3b8246e92543962c04c3883c4d03f5f)
2015-06-26Core/Spells: fixed creatures stucks at 1 hp when a health increasing aura ↵joschiwald
gets removed Closes #13639 (cherry picked from commit 6d87f96e21f515b1500ecdd10576517d23b30cd4)
2015-06-26Scripts/ToC: Fix doors opening/closing during Dreadscale fightjackpoz
Fix doors opening/closing during Dreadscale fight by sending a CloseDoor command instead of toggling the door state when Dreadscale resets its movement. Note that bounding the door state to boss movement makes poor sense and should be changed. Other bosses in ToC have this logic and should be updated if they show the same bug. (cherry picked from commit b5cc8c5b17c96f281728ee08576acfff507d8039)
2015-06-26Merge pull request #14641 from tkrokli/Fix_cast_on_fear_while_rootedjackpoz
Core/Spells: Fix being able to cast while feared and rooted at same time Disallow to cast if feared and rooted at same time (cherry picked from commit 1161295f4f933661ea9738e0c57049a1e38ec8f2) Conflicts: src/server/game/Entities/Unit/Unit.cpp
2015-06-26Scripts/VioletHold: Fix crashjackpoz
Fix crash in Violet Hold happening when crystals were activated without killing trash mobs. Crash added in cba6515acb5820af5df6b77855464c29062b8c44 and f4531c5a582cae24d4d136035074d8da7e5bdad7 . Closes #14629 (cherry picked from commit 09aed2565966c96d403afe44a0cce423c59cb4ec)
2015-06-26Core/Achievements: Fixed linking criteria with achievementsShauren
2015-06-25DB/Hotfixes: Updated broadcast_text to patch 6.2.0Kinzcool
2015-06-25Core/Spells: Fixed spell effect selection depending on map difficultiesShauren
2015-06-24Core/Garrisons: Implemented a method to delete garrisonsShauren
2015-06-23Fix non pch build.Gacko
2015-06-23Core/PacketIO: updated SMSG_SET_AI_ANIM_KIT and SMSG_SET_PLAY_HOVER_ANIMMitchesD
2015-06-23Merge pull request #14937 from xerkoss/patch-2Shauren
Core/Spell: Fix shaman reincarnation
2015-06-23Core/Garrisons: Implemented spawning "Finalize Garrison Plot" gameobjects ↵Shauren
when building under construction is ready
2015-06-22Core/Spell: Fix shaman reincarnationxerkoss
2015-06-22Core/Garrisons: Implemented activating buildingsShauren
2015-06-21Core/Utilities: TaskScheduler: add a task validator and on update success ↵Naios
callback. * makes it possible to block tasks if there is an active spellcast. * requested by @joschiwald (cherry picked from commit 3d95aba2b3d58057f3eeed6d4dd6e51ea49b77f6)
2015-06-21Core/Updater: Fix a wrong formatter introduced in 0d095109eec31Naios
* thanks @Aokromes for noticing (cherry picked from commit bd661b58fd2c37850a719cfffe135e89043c112d)
2015-06-21Core/Creature: fixed loading of creature auras on respawn, deathState needs ↵MitchesD
to be set to ALIVE before trying to AddAuras (which fails with different deathState than ALIVE) Closes https://github.com/TrinityCore/TrinityCore/issues/4150
2015-06-21Merge pull request #14922 from Rochet2/patch-1MitchesD
Fix tabard and cloak mirror image models
2015-06-21Fix tabard and cloak mirror image modelsRochet2
Apparently the order of the two items changed. Mirror image and clone weapon spells are still likely missing transmogrification support.
2015-06-21Core/Threading: Significantly reduced the severity of possible data race ↵Shauren
during player login * This commit changes a data race on a pointer value to data race on integers (guid)
2015-06-21Core/Threading: Fixed possible data races after making auth queries async by ↵Shauren
moving their processing to boost::asio::io_service::run threads
2015-06-21Merge pull request #14920 from Exodius/Exodius-readmeDuarte Duarte
Update README.md
2015-06-21Update README.mdNick
Remove 4.3.4 Build Status from README.md
2015-06-20Core/Updater: Add some info about the count of applied updates.Naios
* some minor improvements * add a log message when database updates are disabled. (cherry picked from commit a5b3862bc1b066a9614369bda3adef485a57eff8)
2015-06-20Core/DBLayer: Sprinkle some async magic on worldserver auth/session load processShauren
* Implemented base for loading account wide data
2015-06-19Scripts/Zul'farrak: Fixed summoning Gahz'rillaShauren
Fixes #5782 regression
2015-06-18Core/Misc: Warning fixShauren
2015-06-17Core/Units: Changed SPELL_AURA_MOD_MINIMUM_SPEED to always be applied, not ↵Shauren
only if under a slow aura (SPELL_AURA_MOD_MINIMUM_SPEED can set the minimum speed higher than base speed)
2015-06-16Core/PacketIO: Added a few more server opcodesShauren
2015-06-15Core/Spells: Defined a new spell attributeShauren
2015-06-15Merge pull request #14890 from Rochet2/mirror_imageDuarte Duarte
Update and enable mirror image packets
2015-06-15Update and enable CMSG_GET_MIRROR_IMAGE_DATA, ↵Orion
SMSG_MIRROR_IMAGE_CREATURE_DATA, SMSG_MIRROR_IMAGE_COMPONENTED_DATA.
2015-06-15Core/PacketIO: Fixed chat packet building in CreatureTextMgrShauren
Closes #14871
2015-06-14DB/AccessRequirement: table fully updated and added missing dungeons/raidsMitchesD
* heroic versions for raid Terrace of Endless Spring, Heart of Fear and Mogu'shan Vaults should be available only if you kill final boss in normal version, but there are no achievements from normal mode, so it can't be done with that table
2015-06-14Core/Misc: Fixed loading access_requirementShauren
Closes #14846
2015-06-13Core/Misc: Fixed static analysis issueShauren
CID 1306242: Non-static class member "SpellID" is not initialized in this constructor nor in any functions that it calls
2015-06-13Core/Misc: Warning fixesShauren
2015-06-13Rename 2015_05_01_00_world.sql to 2015_06_13_00_world.sqlMitchesD
2015-06-13Merge pull request #14617 from Golrag/IoCMitchesD
Core/BattlegroundIC: Removed 1 hack:
2015-06-13Update contributors list (THANKS file)Naios
* See https://gist.github.com/Naios/25810829e66b7ddd8b82 for the full procedure & sources. * Most names were taken from commits (3.3.5 & 6.x branch) * Also contributors who were mentioned in commits were included (@, thx, thanks, Author:, author:)
2015-06-13Core/NetworkIO: Fixed packet compressionShauren
Closes #14401
2015-06-12Core/PacketIO: Fixed structs of packets modified in ↵Carbenium
26961d8ae5a719e5168aee559f8b516f11bf63c8 Sh** happens.... Again thanks @DJScias for the report
2015-06-12DB/Path: Add missing paths for Lieutenant Valorcall & Forsaken CourierKittnz
Closes https://github.com/TrinityCore/TrinityCore/issues/14538
2015-06-12Merge pull request #14873 from ShinDarth/update_thanksMitchesD
Sorted contributors list of THANKS file and converted to utf-8
2015-06-12Sorted contributors list of THANKS file and converted to utf-8ShinDarth
2015-06-12Scripts/TheEye: updated Void Reaver to EventMapMitchesD