Remove hard mod dependencies other than default

This commit is contained in:
stujones11 2019-03-21 21:08:40 +00:00
parent 16451b7c35
commit d1e1dcc1d6
24 changed files with 90 additions and 51 deletions

View file

@ -11,7 +11,7 @@ Crafting
S = Steel Ingot [default:steel_ingot]
B = Bronze Ingot [default:bronze_ingot]
M = Mese Crystal [default:mese_crysytal]
G = Gun Powder [tnt:gunpowder]
G = Gunpowder [shooter:gunpowder]
Pistol: [shooter_guns:pistol]

View file

@ -133,9 +133,8 @@ if shooter.config.enable_crafting == true then
})
minetest.register_craft({
output = "shooter_guns:ammo",
recipe = {
{"tnt:gunpowder", "default:bronze_ingot"},
},
type = "shapeless",
recipe = {"shooter:gunpowder", "default:bronze_ingot"},
})
end