aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-02-16Core/SAI: Move enum to the correct fileKillyana
2018-02-16Core/Events: update holiday code and remove misleading log (event date is ↵ariel-
the one from game_event) - add siign to DBC struct member CalendarFilterType as it was being used as such - kill localtime usage as it's deprecated Closes #18542
2018-02-16Core/Scripts: implemented Fungal Decay & Tail Stingariel-
Refs #18542
2018-02-16Core/Scripts: fix Glyph of Renew interaction with Empowered Renewariel-
- Get actual ticks from aura, because glyph reduces them by 1
2018-02-16Core/Auras: remove obsolete check that was preventing some auras to proc ↵ariel-
even if they met conditions otherwise
2018-02-16Scripts/Ulduar: Fixed amount of Mole Machines in Razorscale 10 manKeader
2018-02-16Core/SAI: Add an action_param3 to "summon gob" to control when the object ↵Killyana
will despawn 0 - For despawn when creature dies or time runs out 1 - For despawn after time Closes #11601
2018-02-16Scripts/TotC: Reduce Twin Val'kyr berserk timer from 10 minutes to 8 minutes ↵Treeston
on normal mode (match DBM). This closes #15367, no matter what ccrs' bong says.
2018-02-15Core/Spells: prevent creatures to focus channeled spells without ↵ariel-
SPELL_ATTR1_CHANNEL_TRACK_TARGET - Creatures stuck here wouldn't try attacking because of this - Remove one workaround in halion script, now it's unneeded Ref #11311
2018-02-15Core/Auras: skip target map update for one world tick if owner is not yet in ↵ariel-
world Closes #21426
2018-02-15Scripts/Commands: add AI/ScriptName to .gobject info (PR #21419)Gooyeth
2018-02-15Core/Combat: Unify combat permitted checks between CvC and PvC - only ↵Treeston
require "not friendly" in all cases. Fixes Yogg-Saron encounter. Closes #21380. Also some bonus cleanup to Yogg's script to make transition cleaner.
2018-02-15Scripts/SmartAI: SetData now has an invoker (if the setting is done by ↵Treeston
something using SmartAI). Also, some refactors. SMARTAI IS SUCH A FUCKING CLUSTERFUCK I SWEAR.
2018-02-15Core/Scripts: Add bossId in state error log. (#21421)Gooyeth
2018-02-15Core/Auras: make area and dynauras condition compliant by using the ↵ariel-
spellarea searcher instead of script searchers Closes #17317
2018-02-14Core/Handlers: fix bogus check that skipped CMSG_CAST_SPELL packet under ↵ariel-
certain conditions, missing a target change Closes #21390
2018-02-14Core/Spells: fixed server being too overzealous with autoshotariel-
- Interrupting it when casting another spell and switching targets Ref #21390
2018-02-14Core/Scripts: fix Healing Stream Totem coefficient and animationariel-
2018-02-14Core/Scripts: Fixed some delayed enrageKeader
Closes #15367
2018-02-14Core/Scripts: fix nopchariel-
2018-02-14DB/Spell: clear spell_bonus_data of redundant entries, now read from DBCsariel-
Ref #21415
2018-02-14Core/Scripts: implemented Seed of Corruption scaling damage toleranceariel-
2018-02-14Core/Spells: implemented bonus SP coefficient from DBCariel-
Ref #21415
2018-02-14Entities/GO: Add forceRespawnTimer support to DespawnOrUnsummon. Use it in SAI.Treeston
2018-02-13Entities/GO: GameObjects now support (delayed) despawning in a reasonable ↵Treeston
manner. Closes #21406.
2018-02-13oops, now it builds (and a bonus refactor that annoyed me)Treeston
2018-02-13Scripts/SmartAI: Forward invoker to invoked action list actions. Also ↵Treeston
JustAppeared -> InitializeAI.
2018-02-13Scripts/TheBarrens: Fix "The Escape" (863) - I don't think this one ever ↵Treeston
worked, honestly.
2018-02-13Scripts/SmartAI: SMART_TARGET_INVOKER cleanup step 1. The core will now log ↵Treeston
errors on start-up if SMART_TARGET_INVOKER abuse is found, but will continue to load the scripts as deprecated for now. Note that a lot of these scripts may either not currently work, not work reliably, or may be prone to breaking unexpectedly when core internals change. SMART_TARGET_INVOKER is undefined behavior on any event that doesn't directly specify its invoker. (We are considering options for allowing INVOKER to make sense in timed action lists in a reliable fashion, so they are exempted at this time.)
2018-02-13Core/Spell: Properly remove REACT_PASSIVE on permanent feign death unapply. ↵Treeston
Fixes and closes #21156.
2018-02-13Scripts/AzjolNerub: Clean up Hadronox to hopefully avoid any further evade ↵Treeston
issues. Tag #20310.
2018-02-12Core/Movement: fe1ba18905 followupccrs
ref https://github.com/TrinityCore/TrinityCore/commit/fe1ba1890540283b8d330fe98b96770fe372ba8d#r27507316 plus I noticed a logic error on speedchange call
2018-02-12Core/Spells: fix Vampiric touch dispel effect inheriting damage done pct twiceariel-
2018-02-12Core/Scripts: fix Tenacity Aurascript (target is null on UpdatePeriodic)ariel-
- also aura amount increases with stack so we lose spellid info, calculate it from basepoints directly - aura should be SPELL_AURA_MOD_HEALING_PCT instead of SPELL_AURA_MOD_HEALING_DONE_PERCENT (ie taken instead of done, confusing names)
2018-02-12Core/Unit: kill unused parameter from SpellxxxBonusTakenariel-
2018-02-12Core/Scripts: remove Tenacity hack, implemented with proper auraariel-
2018-02-12Build fix (unused parameter 'stack' in Unit.cpp)tkrokli
Ref. commit 4d14f613f3d0dc579e2ca4b8dead65ac6e43965d
2018-02-12Archaedas should properly start now when clicking on the altar. (#21401)Wilcalaf
2018-02-12Core/Unit: corrected calculation for ↵ariel-
SPELL_AURA_MOD_DAMAGE_TAKEN/SPELL_AURA_MOD_HEALING auras - Spell bonus calculation and penalty was done twice, but it's simply flat +SP, which should be taken into account before other bonuses - Fixed missing code from SpellDamageBonusDone/SpellHealingBonusDone and killed multiplication by stack amount twice for default coefficient spells (already multiplied on level penalty)
2018-02-12Core/Spells: implemented SpellPriority field from SpellEntry to cleanup ↵ariel-
charged mod proc behaviour - Only one charged mod will be consumed per SpellMod apply, and it'll be compared against other mod priority - This is proper way of handling Backdraft/Backlash and Deathchill/Killing Machine Thanks to killerwife for info
2018-02-12Core/Scripts: fix nopch build mk IIariel-
2018-02-12Core/Scripts: fix nopch buildariel-
2018-02-12Core/Spells: add log on load about improper use of attribute ↵ariel-
PROC_ATTR_REQ_SPELLMOD
2018-02-12Core/Spells: implement SPELLVALUE_CRIT_CHANCE and ↵ariel-
SPELL_ATTR4_INHERIT_CRIT_FROM_AURA Closes #18813
2018-02-12Core/Spells: calculate crit chance only for spells that do damage/healingariel-
Refs #18813
2018-02-12Core/AI: EscortAI init logic moved from JustAppeared to InitializeAI. There ↵Treeston
are no escort NPCs using compatibility mode anymore, so this is equivalent. As a result, inheriting scripts calling Start in on-create hooks (like JustSummoned) will now work properly again. Tagging #20310.
2018-02-12Revert "Scripts/ScarletEnclave: fix Massacre at Light's Point mine cart ↵Treeston
escort to work again (tag #20310)" This reverts commit 6ff71dffbb774b8ea715053cd9223edc5c67bb0f.
2018-02-12Scripts/AzjolNerub: Hadronox is a big spider mommy, and needs more room to ↵Treeston
pet her spider pets properly. Hopefully this'll reduce the number of evades happening during the encounter. Tag #20310.
2018-02-12Scripts/ScarletEnclave: fix Massacre at Light's Point mine cart escort to ↵Treeston
work again (tag #20310)
2018-02-12Core/Movement: WaypointMovementGenerator cleanupTreeston