diff --git a/mods/mapgen/nodes.lua b/mods/mapgen/nodes.lua index d59ed33..d1db0df 100644 --- a/mods/mapgen/nodes.lua +++ b/mods/mapgen/nodes.lua @@ -580,3 +580,21 @@ minetest.register_node("mapgen:purple_allium", { }, walkable = false, }) + +minetest.register_node("mapgen:dead_grass", { + description = "Dead Grass", + drawtype = "plantlike", + tiles = {"mapgen_dead_grass.png"}, + paramtype = "light", + is_ground_content = false, + buildable_to = true, + sunlight_propagates = true, + inventory_image = "mapgen_dead_grass.png", + groups = {snappy=3, flammable=1, attatched_node=1, flora=1}, + sounds = default.node_sound_leaves_defaults(), + selection_box = { + type = "fixed", + fixed = {-0.5, -0.5, -0.5, 0.5, 0, 0.5} + }, + walkable = false, +}) diff --git a/mods/mapgen/textures/mapgen_dead_grass.png b/mods/mapgen/textures/mapgen_dead_grass.png new file mode 100644 index 0000000..86c6556 Binary files /dev/null and b/mods/mapgen/textures/mapgen_dead_grass.png differ diff --git a/mods/mapgen/textures/mapgen_purple_allium.png b/mods/mapgen/textures/mapgen_purple_allium.png index ae0300f..eb0f6e1 100644 Binary files a/mods/mapgen/textures/mapgen_purple_allium.png and b/mods/mapgen/textures/mapgen_purple_allium.png differ diff --git a/mods/mapgen/textures/mapgen_red_ground_flower.png b/mods/mapgen/textures/red_ground_flower.png similarity index 100% rename from mods/mapgen/textures/mapgen_red_ground_flower.png rename to mods/mapgen/textures/red_ground_flower.png