From 223562d687da721729a4295f8a5030a2c7ed3a2f Mon Sep 17 00:00:00 2001 From: paramat Date: Mon, 1 Jan 2018 09:24:15 +0000 Subject: [PATCH] Dry shrub: Use plantlike meshoption for bushy appearence Adjust selectionbox width for a better fit and consistency with other grasses. --- mods/default/mapgen.lua | 2 ++ mods/default/nodes.lua | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mods/default/mapgen.lua b/mods/default/mapgen.lua index 1a85bf30..1cb74cbc 100644 --- a/mods/default/mapgen.lua +++ b/mods/default/mapgen.lua @@ -1593,6 +1593,7 @@ function default.register_mgv6_decorations() y_min = 1, y_max = 30, decoration = "default:dry_shrub", + param2 = 4, }) end @@ -2018,6 +2019,7 @@ function default.register_decorations() y_min = 2, y_max = 31000, decoration = "default:dry_shrub", + param2 = 4, }) -- Coral reef diff --git a/mods/default/nodes.lua b/mods/default/nodes.lua index 55032f2b..2e5f4dad 100644 --- a/mods/default/nodes.lua +++ b/mods/default/nodes.lua @@ -1183,6 +1183,8 @@ minetest.register_node("default:dry_shrub", { inventory_image = "default_dry_shrub.png", wield_image = "default_dry_shrub.png", paramtype = "light", + paramtype2 = "meshoptions", + place_param2 = 4, sunlight_propagates = true, walkable = false, buildable_to = true, @@ -1190,7 +1192,7 @@ minetest.register_node("default:dry_shrub", { sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", - fixed = {-5 / 16, -0.5, -5 / 16, 5 / 16, 4 / 16, 5 / 16}, + fixed = {-6 / 16, -0.5, -6 / 16, 6 / 16, 4 / 16, 6 / 16}, }, })