Fix default.is_day()

This commit is contained in:
BlockMen 2015-10-22 18:25:19 +02:00
parent 07092f84a7
commit 31b9d5fab5

View File

@ -12,8 +12,8 @@ end
function default.is_day()
local tod = minetest.get_timeofday()
if tod > 0.2 and tod < 0.805 then
return false
return true
end
return true
return false
end