From a9f2c705da696181dfc69b9b4fe1bc62bdfbefc7 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 14 Feb 2017 23:43:43 +0100 Subject: [PATCH] Adjust size of throwable things --- mods/mcl_throwing/throwable.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mods/mcl_throwing/throwable.lua b/mods/mcl_throwing/throwable.lua index 3d84a6e55..2f888b3ed 100644 --- a/mods/mcl_throwing/throwable.lua +++ b/mods/mcl_throwing/throwable.lua @@ -68,6 +68,7 @@ local snowball_ENTITY={ physical = false, timer=0, textures = {"mcl_throwing_snowball.png"}, + visual_size = {x=0.5, y=0.5}, collisionbox = {0,0,0,0,0,0}, get_staticdata = get_staticdata, @@ -79,6 +80,7 @@ local egg_ENTITY={ physical = false, timer=0, textures = {"mcl_throwing_egg.png"}, + visual_size = {x=0.45, y=0.45}, collisionbox = {0,0,0,0,0,0}, get_staticdata = get_staticdata, @@ -91,6 +93,7 @@ local pearl_ENTITY={ physical = false, timer=0, textures = {"mcl_throwing_ender_pearl.png"}, + visual_size = {x=0.9, y=0.9}, collisionbox = {0,0,0,0,0,0}, get_staticdata = get_staticdata,