mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-23 23:53:44 +01:00
vector.floor: add resilience
This commit is contained in:
parent
3cc1e120aa
commit
587d430e48
@ -35,7 +35,7 @@ end
|
|||||||
-- Warning: This MUTATES the given vector!
|
-- Warning: This MUTATES the given vector!
|
||||||
-- @param v Vector The vector to operate on
|
-- @param v Vector The vector to operate on
|
||||||
function worldeditadditions.vector.floor(v)
|
function worldeditadditions.vector.floor(v)
|
||||||
v.x = math.floor(v.x)
|
if v.x then v.x = math.floor(v.x) end
|
||||||
-- Some vectors are 2d, but on the x / z axes
|
-- Some vectors are 2d, but on the x / z axes
|
||||||
if v.y then v.y = math.floor(v.y) end
|
if v.y then v.y = math.floor(v.y) end
|
||||||
-- Some vectors are 2d
|
-- Some vectors are 2d
|
||||||
|
Loading…
Reference in New Issue
Block a user