From 8877d5ea16426d0e0400d9433e1ebe22b897ff23 Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Thu, 27 Mar 2025 01:00:54 +0900 Subject: [PATCH] . --- PHI-CL/control.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/PHI-CL/control.lua b/PHI-CL/control.lua index d2fb304..9e37226 100644 --- a/PHI-CL/control.lua +++ b/PHI-CL/control.lua @@ -68,8 +68,7 @@ if settings.startup['PHI-CT'].value then local y_int2, y_frac2 = math.modf(pos2.y) local drop_offset = {x = x_frac2 < 0 and (x_frac2 + 1) or x_frac2, y = y_frac2 < 0 and (y_frac2 + 1) or y_frac2} local pos3 = math2d.position.ensure_xy(inserter.pickup_position) - local x_int3, x_frac3 = math.modf(pos3.x) - local y_int3, y_frac3 = math.modf(pos3.y) + local x_int3, x_frac3, y_int3, y_frac3 = math.modf(pos3.x), math.modf(pos3.y) return { base = base_tile,