mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-20 11:47:48 +00:00
10 lines
No EOL
349 B
Lua
10 lines
No EOL
349 B
Lua
require("modifiers")
|
|
|
|
function onHit(effect, attacker, defender, skill, action, actionContainer)
|
|
local enmity = action.enmity;
|
|
action.enmity = 0;
|
|
|
|
defender.hateContainer.UpdateHate(effect.GetSource(), enmity);
|
|
--Does collusion send a message?
|
|
defender.statusEffects.RemoveStatusEffect(effect, actionContainer, 30331, false);
|
|
end; |