From 53501e1972291a1fd363e4b1a065e81d9645d758 Mon Sep 17 00:00:00 2001 From: Craig Davison Date: Tue, 1 Dec 2015 20:34:38 +0000 Subject: [PATCH] Cleanup init.lua and update todo --- README.md | 3 +++ init.lua | 8 +------- 2 files changed, 4 insertions(+), 7 deletions(-) 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!")