Fix pine_wood naming.

The new names have been "default:pine_wood", "pine_tree" etc.
for a while now.
This commit is contained in:
Auke Kok 2016-03-08 21:56:25 -08:00
parent 188aa57d85
commit e8acca5ee3
2 changed files with 8 additions and 8 deletions

View File

@ -432,8 +432,8 @@ if fields["diamondh"] then
make_ok = "1"
end
if ingotstack:get_name()=="default:pinewood" then
material = "default_pinewood"
if ingotstack:get_name()=="default:pine_wood" then
material = "default_pine_wood"
make_ok = "1"
end

View File

@ -90,11 +90,11 @@ myholeinthewall.register_all(--material, description, image, groups, craft item
--]]
---[[
myholeinthewall.register_all(--material, description, image, groups, craft item
"default_pinewood",
"default_pine_wood",
"Pine Wood",
"default_pinewood.png",
"default_pine_wood.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
"default:pinewood",
"default:pine_wood",
"normal"
)
--]]
@ -290,11 +290,11 @@ myholeinthewall.register_all(--material, description, image, groups, craft item
--]]
---[[
myholeinthewall.register_all(--material, description, image, groups, craft item
"default_pinetree",
"default_pine_tree",
"Pine Tree",
"default_pinetree.png",
"default_pine_tree.png",
"{cracky = 1, oddly_breakable_by_hand = 1,not_in_creative_inventory=1}",
"default:pinetree",
"default:pine_tree",
"normal"
)
--]]