fixed craft for extractor and no longer depends on steel for craft

master
bas080 2014-06-11 01:37:46 +02:00
parent 88221c2c75
commit 1763531b56
3 changed files with 12 additions and 7 deletions

View File

@ -1,2 +1 @@
default
steel

View File

@ -42,7 +42,7 @@
end
--NODES
minetest.register_node('bees:honey_extractor', {
minetest.register_node('bees:extractor', {
description = 'honey extractor',
tiles = {"bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor_front.png"},
paramtype2 = "facedir",
@ -486,18 +486,18 @@
minetest.register_craft({
output = 'bees:extractor',
recipe = {
{'','steel:sheet_metal',''},
{'steel:sheet_metal','steel:rod','steel:sheet_metal'},
{'default:mese_crystal','steel:sheet_metal','default:mese_crystal'},
{'','default:steel_ingot',''},
{'default:steel_ingot','default:stick','default:steel_ingot'},
{'default:mese_crystal','default:steel_ingot','default:mese_crystal'},
}
})
minetest.register_craft({
output = 'bees:smoker',
recipe = {
{'steel:sheet_metal', 'wool:red', ''},
{'default:steel_ingot', 'wool:red', ''},
{'', 'default:torch', ''},
{'', 'steel:sheet_metal',''},
{'', 'default:steel_ingot',''},
}
})
@ -568,6 +568,8 @@
})
--COMPATIBILTY --remove after all has been updated
--ALIASES
minetest.register_alias('bees:honey_extractor', 'bees:extractor')
--BACKWARDS COMPATIBILITY WITH OLDER VERSION
minetest.register_alias('bees:honey_bottle', 'bees:bottle_honey')
minetest.register_abm({

View File

@ -7,6 +7,10 @@ https://github.com/VanessaE/minetest-steel
FEATURES
--------
2.2.1
- removed steel dependency temporarily
- fixed the craft for the extractor (and added alias for)
2.2
- craft for extractor
- extractor texture update