diff --git a/README.md b/README.md index 544e271..adb2729 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,9 @@ Decorative blocks which would look nice on any building or creation. ## Todo - [ ] add luacheck tests - [ ] add contributing.md +- [ ] don't use alias rubbish +- [ ] see dyes example for list +- [ ] fix stairsplus support ## Authors diff --git a/init.lua b/init.lua index 87d9bc3..383ae7b 100644 --- a/init.lua +++ b/init.lua @@ -1,7 +1,3 @@ ---------------------------------------------- --- Coloured Stone Bricks Mod by CraigyDavi -- ---------------------------------------------- - local COLOURS = { "Black", "Cyan", @@ -58,7 +54,7 @@ for number = 1, 15 do } }) - -- Stairs + -- Support for stairsplus mod stairsplus:register_all("colouredstonebricks", colour2, "colouredstonebricks:"..colour2, { description = colour.." Stone Brick", @@ -74,5 +70,3 @@ end minetest.register_alias("dye:dark_blue","dye:blue") minetest.register_alias("dye:dark_pink","dye:magenta") minetest.register_alias("dye:purple","dye:violet") - -print ("Coloured Stone Bricks [colouredstonebricks] has loaded!")