mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
7 lines
114 B
Lua
7 lines
114 B
Lua
function event_scale_calc(e)
|
|
if e.owner:Hungry() then
|
|
e.self:SetScale(1);
|
|
else
|
|
e.self:SetScale(0);
|
|
end
|
|
end
|