Upload files to "/"
This commit is contained in:
parent
e0c27df8d7
commit
3566b3c19d
@ -1,5 +1,5 @@
|
||||
|
||||
register_craft({
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "basic_materials:gold_strip 10",
|
||||
recipe = {
|
||||
@ -7,7 +7,7 @@ register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
register_craft({
|
||||
minetest.register_craft({
|
||||
type = "shapeless",
|
||||
output = "default:gold_ingot",
|
||||
recipe = {
|
||||
|
10
init.lua
Normal file
10
init.lua
Normal file
@ -0,0 +1,10 @@
|
||||
-- Gold Coins mod
|
||||
-- by Jammy
|
||||
|
||||
-- This mod makes gold strips from basic_materials able to be crafted back to gold ingots
|
||||
-- With this mod you can use gold strips as small denominations of gold
|
||||
|
||||
gold_coins = {}
|
||||
gold_coins.mod = { author = "Jammy" }
|
||||
gold_coins.modpath = minetest.get_modpath("gold_coins")
|
||||
dofile(gold_coins.modpath .. "/crafts.lua")
|
Loading…
Reference in New Issue
Block a user