1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 01:30:38 +01:00

fishing tweak

- Add a craft recipe for worms
- Fix an usebug with compressed cobble uncraft
This commit is contained in:
Ombridride 2015-03-12 01:56:31 +01:00
parent f9003c5581
commit 83056f613d
2 changed files with 10 additions and 1 deletions

View File

@ -117,3 +117,12 @@ minetest.register_entity("fishing:bait_worm_entity", {
look_whats_up(self)
end,
})
-- Bait Worm Entity
minetest.register_craft({
output = "fishing:bait_worm_entity 8",
recipe = {
{"default:dirt"},
{"default:dirt"},
}
})

View File

@ -447,7 +447,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = "default:cobble 9",
output = "default:cobble 2",
recipe = {
{"moreblocks:cobble_compressed"},
}