mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-30 23:03:45 +01:00
Add mcl_util.to_bool
This commit is contained in:
parent
21a88be2b2
commit
87a48270f5
@ -1103,3 +1103,8 @@ function mcl_util.is_it_christmas()
|
|||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function mcl_util.to_bool(val)
|
||||||
|
if not val then return false end
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user