From fc902a77de1e54b85076b2a0682fb30dd70359dc Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Sat, 21 May 2016 23:15:59 -0700 Subject: [PATCH] Boats: Lower boat collision box top Standing on a boat makes you appear to "hover" over it since this collision box is way too high. Lower it so that it's low enough to look normal when walking on top of a boat --- mods/boats/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/boats/init.lua b/mods/boats/init.lua index f8d0ccb4..f481b2a3 100644 --- a/mods/boats/init.lua +++ b/mods/boats/init.lua @@ -34,7 +34,7 @@ end local boat = { physical = true, - collisionbox = {-0.5, -0.35, -0.5, 0.5, 0.3, 0.5}, + collisionbox = {-0.5, -0.35, -0.5, 0.5, 0.15, 0.5}, visual = "mesh", mesh = "boats_boat.obj", textures = {"default_wood.png"},