fixed craft for extractor and no longer depends on steel for craft
This commit is contained in:
parent
88221c2c75
commit
1763531b56
@ -1,2 +1 @@
|
|||||||
default
|
default
|
||||||
steel
|
|
||||||
|
14
init.lua
14
init.lua
@ -42,7 +42,7 @@
|
|||||||
end
|
end
|
||||||
|
|
||||||
--NODES
|
--NODES
|
||||||
minetest.register_node('bees:honey_extractor', {
|
minetest.register_node('bees:extractor', {
|
||||||
description = 'honey extractor',
|
description = 'honey extractor',
|
||||||
tiles = {"bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor_front.png"},
|
tiles = {"bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor.png", "bees_extractor_front.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
@ -486,18 +486,18 @@
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'bees:extractor',
|
output = 'bees:extractor',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'','steel:sheet_metal',''},
|
{'','default:steel_ingot',''},
|
||||||
{'steel:sheet_metal','steel:rod','steel:sheet_metal'},
|
{'default:steel_ingot','default:stick','default:steel_ingot'},
|
||||||
{'default:mese_crystal','steel:sheet_metal','default:mese_crystal'},
|
{'default:mese_crystal','default:steel_ingot','default:mese_crystal'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'bees:smoker',
|
output = 'bees:smoker',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'steel:sheet_metal', 'wool:red', ''},
|
{'default:steel_ingot', 'wool:red', ''},
|
||||||
{'', 'default:torch', ''},
|
{'', 'default:torch', ''},
|
||||||
{'', 'steel:sheet_metal',''},
|
{'', 'default:steel_ingot',''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -568,6 +568,8 @@
|
|||||||
})
|
})
|
||||||
|
|
||||||
--COMPATIBILTY --remove after all has been updated
|
--COMPATIBILTY --remove after all has been updated
|
||||||
|
--ALIASES
|
||||||
|
minetest.register_alias('bees:honey_extractor', 'bees:extractor')
|
||||||
--BACKWARDS COMPATIBILITY WITH OLDER VERSION
|
--BACKWARDS COMPATIBILITY WITH OLDER VERSION
|
||||||
minetest.register_alias('bees:honey_bottle', 'bees:bottle_honey')
|
minetest.register_alias('bees:honey_bottle', 'bees:bottle_honey')
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
|
@ -7,6 +7,10 @@ https://github.com/VanessaE/minetest-steel
|
|||||||
|
|
||||||
FEATURES
|
FEATURES
|
||||||
--------
|
--------
|
||||||
|
2.2.1
|
||||||
|
- removed steel dependency temporarily
|
||||||
|
- fixed the craft for the extractor (and added alias for)
|
||||||
|
|
||||||
2.2
|
2.2
|
||||||
- craft for extractor
|
- craft for extractor
|
||||||
- extractor texture update
|
- extractor texture update
|
||||||
|
Loading…
x
Reference in New Issue
Block a user