diff --git a/mods/ITEMS/mcl_flowerpots/init.lua b/mods/ITEMS/mcl_flowerpots/init.lua index 4d45e6ffd..c5070a51e 100644 --- a/mods/ITEMS/mcl_flowerpots/init.lua +++ b/mods/ITEMS/mcl_flowerpots/init.lua @@ -70,16 +70,18 @@ function mcl_flowerpots.register_potted_flower(name, def) drawtype = "mesh", mesh = "flowerpot.obj", tiles = { - "[combine:32x32:0,0=mcl_flowerpots_flowerpot.png:0,0=" .. def.image, + "[combine:32x32:0,0=mcl_flowerpots_flowerpot.png:0,0=" .. def.image .. ":0,0=mcl_flowerpots_flowerpot.png", }, use_texture_alpha = "clip", visual_scale = 0.5, paramtype = "light", + paramtype2 = def.paramtype2, + palette = def.palette, sunlight_propagates = true, selection_box = pot_box, collision_box = pot_box, is_ground_content = false, - groups = { dig_immediate = 3, attached_node = 1, dig_by_piston = 1, not_in_creative_inventory = 1, flower_pot = 2 }, + groups = { dig_immediate = 3, attached_node = 1, dig_by_piston = 1, not_in_creative_inventory = 1, flower_pot = 2, grass_palette = def.grass_palette_group }, sounds = mcl_sounds.node_sound_stone_defaults(), on_rightclick = function(pos, item, clicker) local player_name = clicker:get_player_name()