Fix is_night function

BadToad2000/master
Brandon 2016-07-11 22:54:06 -05:00
parent 93777a886c
commit dfab21fbc3
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ end
function adventuretest.is_night()
local t = minetest.get_timeofday()
if t > 0.8 or t < 4 then
if t > 0.8 or t < 0.4 then
return true
else
return false