aboutsummaryrefslogtreecommitdiff
path: root/src/game/SpellAuraEffects.cpp
AgeCommit message (Collapse)Author
2010-05-20Fix talent Survival of the Fittest.Anubisss
Thanks to Aokromes for helping in the tests. Fixes issue #2034. --HG-- branch : trunk
2010-05-20Fix talent Heart of the Wild.Anubisss
SQL part of the patch by havenard. --HG-- branch : trunk
2010-05-18Allow spell Rupture to crits on ticks.Anubisss
Fixes issue #1796. --HG-- branch : trunk
2010-05-14Drop out Grobbulus's Mutating Injection spell code from core.Anubisss
It's handled correctly via table spell_linked_spell. Also, this commit fixes the bug that spell Mutating Injection casted on the target two times by each casts. --HG-- branch : trunk
2010-05-12Remove Non-Blizzlike hack for spell 25899 - Greater Blessing of Sanctuary. ↵Machiavelli
It now gives 10% strength increase as intended. --HG-- branch : trunk
2010-05-01Fix more warnings.Spp
--HG-- branch : trunk
2010-04-29Fix FoS/Bronjham script.Trazom62
Fixes issue #1895. - summon corrupted soul fragment when Corrupt Soul completes. - update corrupted soul fragment script. - remove Heroic spell definition. They are defined in SpellDifficulty.dbc. --HG-- branch : trunk
2010-04-25Fix channelled spells when player has lot of haste AND a buff reducing spell ↵Trazom62
duration. Thanks dr.tenma. Fixes issue #1052. --HG-- branch : trunk
2010-04-25Fix resilience update for 3.3.x. Thanks dr.tenma.Trazom62
Fixes issue #198. --HG-- branch : trunk
2010-04-21Fix Beacon of Light: make it work when casted on other players (no initial ↵click
aggro on caster) Fix by Liberate --HG-- branch : trunk
2010-04-21Fix typo in one druid talent handlingthenecromancer
--HG-- branch : trunk
2010-04-19Code Style: Remove trailing spaces and tab to spacesSpp
--HG-- branch : trunk
2010-04-19More warning removal (Some code modifications and cleanup when needed)Spp
--HG-- branch : trunk
2010-04-19Remove LOTS of compile warningsSpp
--HG-- branch : trunk
2010-04-13Restore works many spells, broken after client switch.n0n4m3
--HG-- branch : trunk
2010-04-12Fix PW:S bonus from Twin Disciplines and Focused Power. Thanks Proof.Trazom62
See issue #1322. --HG-- branch : trunk
2010-04-12* Fix: correct dancing rune blade damage output - patch by tbaartclick
Fixes issue #1354 Fixes issue #1479 --HG-- branch : trunk
2010-04-11Fix Prey on the Weak. Thanks PrinceCreed.Trazom62
Fixes issue #1003. Fixes issue #230. --HG-- branch : trunk
2010-04-11Final fix basepoints calculation, thx to Vladimir, Laise.n0n4m3
--HG-- branch : trunk
2010-04-11Fix mail, professions, group loot, console spam, and some fixes. Big thx to ↵n0n4m3
TOM_RUS. --HG-- branch : trunk
2010-04-08Code Style (game + scripts only):Spp
"!=" --> " != " (when needed) " !=" --> " !=" "!= " --> "!= " --HG-- branch : trunk
2010-04-07Code Style (game + scripts only):Spp
">=" --> " >= " (when needed) " >=" --> " >=" ">= " --> ">= " "<=" --> " <= " (when needed) " <=" --> " <=" "<= " --> "<= " " ==" --> " ==" "== " --> "== " --HG-- branch : trunk
2010-04-07Code Style (game + scripts only):Spp
"==" --> " == " (when needed) --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"( " --> "(" " )" --> ")" --HG-- branch : trunk
2010-04-07Code style (game + scripts only):Spp
"if(" --> "if (" --HG-- branch : trunk
2010-04-07Code Style: Remove trailing spacesSpp
--HG-- branch : trunk
2010-04-07Code Style: tab to spacesSpp
--HG-- branch : trunk
2010-04-06*fix bug "cant cast or logout till you move a bit if someone dismounted near ↵Rat
you from a flying mount" --HG-- branch : trunk
2010-04-03Fix Hymn of Hope. Thanks Proof.Trazom62
Fixes issue #1322. Fixes issue #1428. --HG-- branch : trunk
2010-03-24Cleaned and tidied-up the mechanic immunity handlerXanadu
--HG-- branch : trunk
2010-03-21Implemented Glyph of Drain Soul. Partly based on thenecromancer's code.Xanadu
--HG-- branch : trunk
2010-03-19Missing part of previous commit (Periodic Leech is DoT as well)thenecromancer
Fix talents Improved Rend and Gag Order not increasing whole damage of affected spells (applying effect modifiers - spellmod_effectx should be however done for every static damage added to already calculated damage, we can't just apply all spellmods after effects are processed...) --HG-- branch : trunk
2010-03-19Update player damage reduction by resilience combat ratingthenecromancer
Apply crit damage reduction to periodic crit damage --HG-- branch : trunk
2010-03-17Fixed Drain Soul increased damage for targets below 25% HP. Closes issue ↵Xanadu
#394. Closes issue #748. Closes issue #938. Rejoice, new era of server-side spells has begun! --HG-- branch : trunk
2010-03-15Fixed Drain Soul and Shadowburn Soul Shard on target death. Closes issue 1058.Xanadu
--HG-- branch : trunk
2010-03-14Fix creature tapped and lootable dynamic flags => fix creature not lootable.Trazom62
Fixes issue #1067. --HG-- branch : trunk
2010-03-11Convert some C style casts to new functionsthenecromancer
--HG-- branch : trunk
2010-03-09Rename 'Hostil' to 'Hostile'Spp
Credits to NoFantasy (Mangos) Closes issue #411 --HG-- branch : trunk
2010-03-08Fix crash in AuraEffect::HandleShapeshiftBooststhenecromancer
Add check to Spell::EffectSanctuary before casting (ensuring all appearances of "(Player *)" (whitespace incl.) are correct) --HG-- branch : trunk
2010-03-07Some Creature* casts moved to new ToCreature.raczman
Added const Creature* ToCreature() --HG-- branch : trunk
2010-03-07Added new type-safe cast functions.raczman
This, when properly used, should get rid of most memory corruption issues, currently, casting types C-style with no checks leads to some abstract crashing. Functionality is same as with dynamic_cast<>, but with no RTTI check - so when casting into invalid type you will receive NULL, and most probably crash. At the same time, i took the liberty to convert most Player* casts to ToPlayer(). Still needs crapload of casts being moved to new facility. --HG-- branch : trunk
2010-02-27Update visibility systemsilver1ce
*visibility updates and ai relocations processed simultaneously for each grid *these operations now are not synchronized for different grids *some changes into structure of visibility notifiers --HG-- branch : trunk
2010-02-23Fix spell 51912Tartalo
--HG-- branch : trunk
2010-02-20*(awe)some changes to triggering spell/aura effects:QAston
*do not use original caster for trigger spell/trigger spell with value effects *correct caster selection for force cast/trigger spell/trigger spell with value spell effects --HG-- branch : trunk
2010-02-15Fix spell Savage Roar.n0n4m3
--HG-- branch : trunk
2010-02-15Removed stupid/not needed file Spellid.h.n0n4m3
--HG-- branch : trunk
2010-02-14* Core switch to client 3.3.2 (11403)Brian
* Credits (in no particular order) to: * n0n4m3, raczman, manuel, Spp, Malcrom, Teacher, QAston, Tartalo, * thenecromancer, Xanadu, Trazom, Zor, kiper * Additional credits to: * TOM_RUS and NoFantasy from MaNGOS * Thanks for testing Aokromes and XTElite1 * SoTA still needs some work, but is very playable (huge thanks to raczman and * kiper) * To upgrade, you need to apply all SQL from sql/updates/3.2.2a_old from the * last rev you are on * and then apply all SQL from sql/updates/3.3.2_old to char / realmd / world * DBs * Known problem with guild banks. --HG-- branch : trunk
2010-02-05Yet more cleanup, mostly in the script system. This should conclude the ↵Xanadu
script integration into core. --HG-- branch : trunk
2010-02-04*Way more correct way of selecting caster and target for Periodic Trigger auras.QAston
--HG-- branch : trunk
2010-02-01Fix quest : Death From Above. Thanks clement.roussel for original patch.Trazom62
Fixes issue #592. --HG-- branch : trunk