diff --git a/depends.txt b/depends.txt index c333993..f970689 100644 --- a/depends.txt +++ b/depends.txt @@ -8,4 +8,5 @@ wool? magma_conduits? intllib? doc? -simplecrafting_lib? \ No newline at end of file +simplecrafting_lib? +handholds? \ No newline at end of file diff --git a/features/flowstone_nodes.lua b/features/flowstone_nodes.lua index 2979e7e..285faa2 100644 --- a/features/flowstone_nodes.lua +++ b/features/flowstone_nodes.lua @@ -74,3 +74,8 @@ dfcaverns.icicle_ids = subterrane.register_stalagmite_nodes("dfcaverns:icicle", groups = {cracky = 3, puts_out_fire = 1, cools_lava = 1, slippery = 3}, sounds = default.node_sound_glass_defaults(), }) + +if minetest.get_modpath("handholds") and handholds ~= nil and handholds.register_handholds_node ~= nil then + handholds.register_handholds_node("dfcaverns:dry_flowstone", "dfcaverns:dry_flowstone_handholds", {description = S("Dry Flowstone Handholds")}) + handholds.register_handholds_node("dfcaverns:wet_flowstone", "dfcaverns:wet_flowstone_handholds", {description = S("Wet Flowstone Handholds")}) +end diff --git a/features/ground_cover.lua b/features/ground_cover.lua index 49ea16f..28e5c3a 100644 --- a/features/ground_cover.lua +++ b/features/ground_cover.lua @@ -53,7 +53,7 @@ minetest.register_node("dfcaverns:cobble_with_floor_fungus", { description = S("Cobblestone With Floor Fungus"), _doc_items_longdesc = dfcaverns.doc.floor_fungus_desc, _doc_items_usagehelp = dfcaverns.doc.floor_fungus_usage, - tiles = {"default_cobble.png^dfcaverns_floor_fungus.png", "default_cobble.png", "default_cobble.png^dfcaverns_floor_fungus_side.png"}, + tiles = {"default_cobble.png^dfcaverns_floor_fungus.png"}, drops = "default:cobble", is_ground_content = true, groups = {cracky = 3, stone = 2, slippery = 1, light_sensitive_fungus = 11}, diff --git a/textures/dfcaverns_floor_fungus.png b/textures/dfcaverns_floor_fungus.png index 5104ae5..1717c6f 100644 Binary files a/textures/dfcaverns_floor_fungus.png and b/textures/dfcaverns_floor_fungus.png differ