Created
August 14, 2012 08:05
-
-
Save neo-mat/3347357 to your computer and use it in GitHub Desktop.
Spell Aura 231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/arcemu-world/SpellAuras.cpp b/src/arcemu-world/SpellAuras.cpp | |
index 590d23c..474c5d7 100644 | |
--- a/src/arcemu-world/SpellAuras.cpp | |
+++ b/src/arcemu-world/SpellAuras.cpp | |
@@ -4040,9 +4040,12 @@ void Aura::SpellAuraProcTriggerSpell(bool apply) | |
SM_PIValue(ucaster->SM_PCharges, &charges, GetSpellProto()->SpellGroupType); | |
} | |
- m_target->AddProcTriggerSpell(spellId, GetSpellProto()->Id, m_casterGuid, GetSpellProto()->procChance, GetSpellProto()->procFlags, charges, groupRelation, NULL); | |
+ SpellEntry* spellInfo = dbcSpell.LookupEntry(spellId); | |
+ spellInfo->EffectBasePoints[0] = mod->m_amount; | |
- LOG_DEBUG("%u is registering %u chance %u flags %u charges %u triggeronself %u interval %u", GetSpellProto()->Id, spellId, GetSpellProto()->procChance, GetSpellProto()->procFlags & ~PROC_TARGET_SELF, charges, GetSpellProto()->procFlags & PROC_TARGET_SELF, GetSpellProto()->proc_interval); | |
+ m_target->AddProcTriggerSpell(spellInfo->Id, GetSpellProto()->Id, m_casterGuid, GetSpellProto()->procChance, GetSpellProto()->procFlags, charges, groupRelation, NULL); | |
+ | |
+ LOG_DEBUG("%u is registering %u chance %u flags %u charges %u trigger on self %u interval %u", GetSpellProto()->Id, spellId, GetSpellProto()->procChance, GetSpellProto()->procFlags & ~PROC_TARGET_SELF, charges, GetSpellProto()->procFlags & PROC_TARGET_SELF, GetSpellProto()->proc_interval); | |
} | |
else | |
{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment