1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-29 22:20:33 +00:00

Idle is optional and could be nil

This commit is contained in:
Hristos N. Triantafillou 2024-05-03 15:21:48 -05:00
parent 739ff70a82
commit 686fdb057d
No known key found for this signature in database
GPG Key ID: 5FC7664AD47AA1C5

View File

@ -22,16 +22,18 @@ local function startPackage(args)
local key = "idle" local key = "idle"
local idle = {} local idle = {}
local duration = 0 local duration = 0
for i = 2, 9 do if args.idle then
local val = args.idle[key .. i] for i = 2, 9 do
if val == nil then local val = args.idle[key .. i]
idle[i-1] = 0 if val == nil then
else idle[i-1] = 0
local v = tonumber(val) or 0 else
if v < 0 or v > 100 then local v = tonumber(val) or 0
error("idle values cannot exceed 100") if v < 0 or v > 100 then
error("idle values cannot exceed 100")
end
idle[i-1] = v
end end
idle[i-1] = v
end end
end end
if args.duration then if args.duration then