From 11064e0afa34c81cfa7309d63e995576876ee6d3 Mon Sep 17 00:00:00 2001 From: stujones11 Date: Sun, 5 Feb 2017 19:04:32 +0000 Subject: [PATCH] Remove redundant code --- api.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/api.lua b/api.lua index efbcf56..6ae2a17 100644 --- a/api.lua +++ b/api.lua @@ -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