- the dark color s50 dye makes the same wood (craft: {default:wood, default:wood, dye}) as the simply dark dye.
- You can't craft sticks from the dark color s50 wood (fences are good once the sticks recipe is fixed).
This is the git diff
- Code: Select all
diff --git a/stick.lua b/stick.lua
index 05fb3f4..5652f4b 100644
--- a/stick.lua
+++ b/stick.lua
@@ -24,7 +24,7 @@ for shade = 1, 3 do
local s50colorname = colored_block_modname..":stick_"..shadename..huename.."_s50"
local s50pngname = colored_block_modname.."_stick_"..shadename..huename.."_s50.png"
local s50itemdesc = shadename2..huename2..colored_block_description.." (50% Saturation)"
- local s50woodkname = colored_block_modname..":wood_"..shadename..huename.."_s50"
+ local s50woodname = colored_block_modname..":wood_"..shadename..huename.."_s50"
minetest.register_craft({
type = "fuel",
diff --git a/wood.lua b/wood.lua
index 256d3fb..8fd4d01 100644
--- a/wood.lua
+++ b/wood.lua
@@ -107,7 +107,7 @@ for shade = 1, 3 do
minetest.register_craft( {
type = "shapeless",
- output = colorname.." 2",
+ output = s50colorname.." 2",
recipe = {
neutral_block,
neutral_block,
EDIT:
I think I should post the tests I did in creative on coloredwood (after the patch above).
This is the colored dyes I made from one of the 12 base colors:
- s50 dye, craft = (black dye, black dye, white dye, base color dye)
- dark dye (black, black, base color)
- medium dye: (black, base color)
- light dye: (white, base color)
- nothing: (base color)
And the dyes I made in shades of grey:
- black
- black, black, white
- black, white
- black, white, white
- white
I tried the following recipes on each of these dyes:
- dye, 6 default:stick -> dyed fence
- default:wood, default:wood, dye -> dyed wood
- dyed wood -> dyed sticks
- dyed sticks -> dyed fence
I believe every dye color and recipe is covered in this set. Everything works exept that this recipe: (dye, 6 default:stick -> dyed fence) doesn't seem to exist for the shades of grey. I didn't fix it yet.