Skip to content

Instantly share code, notes, and snippets.

@neo-mat
Created August 14, 2012 08:05
Show Gist options
  • Save neo-mat/3347357 to your computer and use it in GitHub Desktop.
Save neo-mat/3347357 to your computer and use it in GitHub Desktop.
Spell Aura 231
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