From 97594c89fbd5fade2340e177588ad489ba75b590 Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Tue, 26 Jan 2021 18:51:18 +0100 Subject: [PATCH] Fix #968 --- mods/ENTITIES/mcl_burning/engine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_burning/engine.lua b/mods/ENTITIES/mcl_burning/engine.lua index 9e1491571..377f6538e 100644 --- a/mods/ENTITIES/mcl_burning/engine.lua +++ b/mods/ENTITIES/mcl_burning/engine.lua @@ -39,7 +39,7 @@ end function mcl_burning.get_collisionbox(obj) local box = obj:get_properties().collisionbox - return vector.new(box[1], box[2], box[3]), vector.new(box[4], box[5], box[6]) + return vector.new(box[1] + 0.1, box[2] + 0.1, box[3] + 0.1), vector.new(box[4] - 0.1, box[5] - 0.1, box[6] - 0.1) end function mcl_burning.get_touching_nodes(obj, nodenames)