Fix outdated cloth: item prefix

This commit is contained in:
Wuzzy 2024-01-31 23:24:06 +01:00
parent 189652a631
commit a906877b17
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ minetest.register_node("gluncarp:machine", {
----------------------------------------------------------------------
for col=1,#colors do
local color = colors[col]
if clothname == "cloth:"..color then
if clothname == "hades_cloth:"..color then
material = color
count = 4
elseif clothname == "gluncarp:wool_"..color then

View File

@ -45,7 +45,7 @@ hades_beds.register_bed("hades_beds:fancy_bed", {
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
recipe = {
{"", "", "group:stick"},
{"cloth:red", "cloth:red", "cloth:white"},
{"hades_cloth:red", "hades_cloth:red", "hades_cloth:white"},
{"group:wood", "group:wood", "group:wood"},
},
})