From ba82b24aadbbff1b60daf90232dd9bb1c0ab8caa Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sun, 9 Apr 2017 03:20:28 -0400 Subject: update pipeworks again --- pipeworks/luaentity.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'pipeworks') diff --git a/pipeworks/luaentity.lua b/pipeworks/luaentity.lua index 0105c91..ab7280c 100644 --- a/pipeworks/luaentity.lua +++ b/pipeworks/luaentity.lua @@ -24,6 +24,22 @@ end local function read_entities() local t = read_file() for _, entity in pairs(t) do + + local x=entity.start_pos.x + local y=entity.start_pos.y + local z=entity.start_pos.z + + x=math.max(-30912,x) + y=math.max(-30912,y) + z=math.max(-30912,z) + x=math.min(30927,x) + y=math.min(30927,y) + z=math.min(30927,z) + + entity.start_pos.x = x + entity.start_pos.y = y + entity.start_pos.z = z + setmetatable(entity, luaentity.registered_entities[entity.name]) end return t -- cgit v1.2.3