Remove redundant code

This commit is contained in:
stujones11 2017-02-05 19:04:32 +00:00
parent c6ef2fb2fb
commit 11064e0afa
1 changed files with 0 additions and 1 deletions

View File

@ -142,7 +142,6 @@ meshnode.rotate_offset = function(yaw, offset)
local sin = math.sin(yaw)
local x = offset.x * cos - offset.z * sin
local z = offset.x * sin + offset.z * cos
local ret = vector.round({x=x, y=offset.y, z=z})
return vector.round({x=x, y=offset.y, z=z})
end