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:
parent
35f9251056
commit
e390138258
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ require ("global")
|
||||||
|
|
||||||
function onEventStarted(player, equipAbilityWidget, triggername, slot, ability, unkown, arg1, arg2, arg3, arg4, arg5, arg6)
|
function onEventStarted(player, equipAbilityWidget, triggername, slot, ability, unkown, arg1, arg2, arg3, arg4, arg5, arg6)
|
||||||
if ability then
|
if ability then
|
||||||
player:EquipAbility(slot, ability, 1);
|
player:EquipAbility(slot, ability);
|
||||||
end
|
end
|
||||||
player:endEvent();
|
player:endEvent();
|
||||||
end
|
end
|
Loading…
Add table
Reference in a new issue