1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-23 21:27:46 +00:00

Removed unneeded recast timer parameter in EquipAbility call in EquipAbilityCommand.lua

This commit is contained in:
yogurt 2017-08-22 14:56:57 -05:00
parent 35f9251056
commit e390138258

View file

@ -8,7 +8,7 @@ require ("global")
function onEventStarted(player, equipAbilityWidget, triggername, slot, ability, unkown, arg1, arg2, arg3, arg4, arg5, arg6)
if ability then
player:EquipAbility(slot, ability, 1);
player:EquipAbility(slot, ability);
end
player:endEvent();
end