diff --git a/mesecons_blinkyplant/init.lua b/mesecons_blinkyplant/init.lua index 678dd56..9ae84aa 100644 --- a/mesecons_blinkyplant/init.lua +++ b/mesecons_blinkyplant/init.lua @@ -1,30 +1,38 @@ -- The BLINKY_PLANT minetest.register_node("mesecons_blinkyplant:blinky_plant_off", { - drawtype = "plantlike", + drawtype = "torchlike", visual_scale = 1, tile_images = {"jeija_blinky_plant_off.png"}, inventory_image = "jeija_blinky_plant_off.png", paramtype = "light", walkable = false, - groups = {snappy=2}, + groups = {dig_immediate=3}, description="Blinky Plant", + selection_box = { + type = "fixed", + fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + }, }) minetest.register_node("mesecons_blinkyplant:blinky_plant_on", { - drawtype = "plantlike", + drawtype = "torchlike", visual_scale = 1, tile_images = {"jeija_blinky_plant_on.png"}, inventory_image = "jeija_blinky_plant_off.png", paramtype = "light", walkable = false, - groups = {snappy=2, not_in_creative_inventory=1}, + groups = {dig_immediate=3, not_in_creative_inventory=1}, drop='"mesecons_blinkyplant:blinky_plant_off" 1', light_source = LIGHT_MAX-7, description = "Blinky Plant", after_dig_node = function(pos) mesecon:receptor_off(pos) - end + end, + selection_box = { + type = "fixed", + fixed = {-0.1, -0.5, -0.1, 0.1, -0.5+0.6, 0.1}, + }, }) minetest.register_craft({ diff --git a/mesecons_textures/textures/jeija_blinky_plant_off.png b/mesecons_textures/textures/jeija_blinky_plant_off.png index 4c545f8..8ee9dbe 100644 Binary files a/mesecons_textures/textures/jeija_blinky_plant_off.png and b/mesecons_textures/textures/jeija_blinky_plant_off.png differ diff --git a/mesecons_textures/textures/jeija_blinky_plant_on.png b/mesecons_textures/textures/jeija_blinky_plant_on.png index 89acfa3..b4fc16c 100644 Binary files a/mesecons_textures/textures/jeija_blinky_plant_on.png and b/mesecons_textures/textures/jeija_blinky_plant_on.png differ