From 09cf4c332e8296fc5f25bafcb29a23f6da8f915c Mon Sep 17 00:00:00 2001 From: Bram van den Heuvel Date: Tue, 27 Aug 2024 23:14:22 +0200 Subject: [PATCH] Improve documentation --- README.md | 3 ++- init.lua | 3 +++ mod.conf | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9c84dde..b8eb882 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ This Minetest mod adds dripstone to Minetest. ## Contribute -You can contribute by making pull requests or by reaching out to me [on Matrix](https://matrix.to/#/@bram:matrix.directory). +You can contribute by making pull requests or by reaching out to me +[on Matrix](https://matrix.to/#/@bram:matrix.directory). ## Licensing diff --git a/init.lua b/init.lua index 978fcb1..a7edbd8 100644 --- a/init.lua +++ b/init.lua @@ -1,10 +1,13 @@ noordstar_dripstone = { + -- Nodes that the mod should consider as sources to extract water from water_nodes = { "default:river_water_source" , "default:water_source" , "mcl_core:water_source" , "mclx_core:river_water_source" } + + -- Nodes that the mod should consider as sources to extract lava from , lava_nodes = { "default:lava_source" , "mcl_core:lava_source" diff --git a/mod.conf b/mod.conf index b3bbc8f..8f15cbe 100644 --- a/mod.conf +++ b/mod.conf @@ -3,4 +3,4 @@ description=Add stalactites and stalagmites to your game. author=Noordstar title=Noordstar Dripstone depends= -optional_depends=default,mcl_cauldron,mcl_core \ No newline at end of file +optional_depends=default,mcl_cauldrons,mcl_core \ No newline at end of file