Cleanup init.lua and update todo

This commit is contained in:
Craig Davison 2015-12-01 20:34:38 +00:00
parent 85f8d483e0
commit 53501e1972
2 changed files with 4 additions and 7 deletions

View File

@ -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

View File

@ -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!")