From: Auke Kok Date: Sun, 22 May 2016 06:15:59 +0000 (-0700) Subject: Boats: Lower boat collision box top X-Git-Tag: 0.4.15~189 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fc902a77de1e54b85076b2a0682fb30dd70359dc;p=oweals%2Fminetest_game.git 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 --- 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"},