fix the mithril string

This commit is contained in:
Quentin BUISSON-DEBON 2015-08-02 11:19:56 +02:00
parent 12535aebab
commit 33a093263b
2 changed files with 10 additions and 0 deletions

8
mods/throwing/crafts.lua Normal file
View File

@ -0,0 +1,8 @@
-- Craft recipe of the "Mithril String"
minetest.register_craft({
output = "throwing:string_mithril",
description = "Mithril String",
inventory_image = "string_mithril.png",
type = "shapeless",
recipe = {"moreores:mithril_ingot", "farming:string"},
})

View File

@ -28,6 +28,8 @@ dofile(minetest.get_modpath("throwing").."/functions.lua")
dofile(minetest.get_modpath("throwing").."/tools.lua")
dofile(minetest.get_modpath("throwing").."/crafts.lua")
dofile(minetest.get_modpath("throwing").."/standard_arrows.lua")
if minetest.get_modpath('fire') and minetest.get_modpath('bucket') and not DISABLE_FIRE_ARROW then