11 lines
No EOL
278 B
Lua
11 lines
No EOL
278 B
Lua
local function endurance(e)
|
|
local tar = e.self:GetTarget();
|
|
if (tar.null) then
|
|
tar = e.self;
|
|
end
|
|
|
|
e.self:Message(MT.Yellow, "Targets endurance refreshed (" .. tar:GetCleanName() .. ")");
|
|
tar:SetEndurance(tar:GetMaxEndurance());
|
|
end
|
|
|
|
return endurance; |