diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-02-24 20:42:04 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-02-24 20:42:04 -0500 |
commit | fe455a7e44cc401a4e3aa6e479545f890ad497d0 (patch) | |
tree | 8198a6ecf9ddbbf3d8154256971de81b2712b421 | |
parent | d2819353c2ebeacc9b1741012d194277f0ded6db (diff) | |
download | unifieddyes-fe455a7e44cc401a4e3aa6e479545f890ad497d0.tar unifieddyes-fe455a7e44cc401a4e3aa6e479545f890ad497d0.tar.gz unifieddyes-fe455a7e44cc401a4e3aa6e479545f890ad497d0.tar.bz2 unifieddyes-fe455a7e44cc401a4e3aa6e479545f890ad497d0.tar.xz unifieddyes-fe455a7e44cc401a4e3aa6e479545f890ad497d0.zip |
dyes -> not in creative inv
-rw-r--r-- | init.lua | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -718,7 +718,7 @@ for _, h in ipairs(HUES_EXTENDED) do minetest.register_craftitem(":dye:"..val..hue, { description = S(desc), inventory_image = "unifieddyes_dye.png^[colorize:#"..color..":200", --- groups = { dye=1, not_in_creative_inventory=1 }, + groups = { dye=1, not_in_creative_inventory=1 }, on_use = unifieddyes.on_use }) minetest.register_alias("unifieddyes:"..val..hue, "dye:"..val..hue) @@ -740,7 +740,7 @@ for _, h in ipairs(HUES_EXTENDED) do minetest.register_craftitem(":dye:"..val..hue.."_s50", { description = S(desc.." (low saturation)"), inventory_image = "unifieddyes_dye.png^[colorize:#"..color..":200", --- groups = { dye=1, not_in_creative_inventory=1 }, + groups = { dye=1, not_in_creative_inventory=1 }, on_use = unifieddyes.on_use }) minetest.register_alias("unifieddyes:"..val..hue.."_s50", "dye:"..val..hue.."_s50") @@ -761,7 +761,7 @@ for y = 1, 14 do -- colors 0 and 15 are black and white, default dyes minetest.register_craftitem(":dye:"..name, { description = S(desc), inventory_image = "unifieddyes_dye.png^[colorize:#"..rgb..":200", - -- groups = { dye=1, not_in_creative_inventory=1 }, + groups = { dye=1, not_in_creative_inventory=1 }, on_use = unifieddyes.on_use }) minetest.register_alias("unifieddyes:"..name, "dye:"..name) |