diff --git a/LICENSE.txt b/LICENSE.txt index abfe82d..aee1aca 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,3 @@ - Textures: Original torch textures from minetest_game/default Recoloured textures and edits by Shara RedCat @@ -10,7 +9,7 @@ Attribution: BlockMen, from https://github.com/BlockMen/torches Code: License: MIT (https://opensource.org/licenses/MIT) By Shara RedCat - +Small improvements and changes by rudzik8 --- diff --git a/crafting.lua b/crafting.lua index 682d889..d985a31 100644 --- a/crafting.lua +++ b/crafting.lua @@ -1,4 +1,3 @@ - local recipe_list local modname @@ -36,4 +35,4 @@ for i in ipairs(recipe_list) do {"default:torch", "", "default:torch" }, } }) -end +end \ No newline at end of file diff --git a/depends.txt b/depends.txt deleted file mode 100644 index 331d858..0000000 --- a/depends.txt +++ /dev/null @@ -1 +0,0 @@ -default \ No newline at end of file diff --git a/mod.conf b/mod.conf new file mode 100644 index 0000000..b866947 --- /dev/null +++ b/mod.conf @@ -0,0 +1,4 @@ +name = abritorch +description = Coloured torches mod for Minetest +depends = default +optional_depends = caverealms \ No newline at end of file diff --git a/torches.lua b/torches.lua index 926631b..ee5d400 100644 --- a/torches.lua +++ b/torches.lua @@ -1,4 +1,3 @@ - local colour_list = { {"black", "Darkened",}, {"blue", "Blue",}, {"cyan", "Cyan",}, {"green", "Green",}, @@ -117,5 +116,4 @@ for i in ipairs(colour_list) do end end }) -end - +end \ No newline at end of file