vector.floor: add resilience

This commit is contained in:
Starbeamrainbowlabs 2021-03-09 18:45:04 +00:00
parent 3cc1e120aa
commit 587d430e48
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ end
-- Warning: This MUTATES the given vector!
-- @param v Vector The vector to operate on
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
if v.y then v.y = math.floor(v.y) end
-- Some vectors are 2d