randomsc: increase delay to 15 secs to give time to render

This commit is contained in:
cora 2020-11-10 13:29:29 +01:00
parent cac68e9132
commit 1d42685b3d

View File

@ -14,7 +14,7 @@ minetest.register_globalstep(function()
if os.time() < nextsc then return end
math.randomseed(os.clock())
nextsc=os.time() + ( interval * 60 ) + math.random(rnd * 60)
minetest.after("5.0",minetest.take_screenshot)
minetest.after("15.0",minetest.take_screenshot)
end)