Make modpack mostly independent from MTG (#607)

This commit is contained in:
Jude Melton-Houghton
2022-05-05 10:57:53 -04:00
committed by GitHub
parent f4070d3e64
commit dfa43d6c0c
67 changed files with 285 additions and 187 deletions

View File

@ -216,7 +216,7 @@ local function register_wires()
walkable = false,
drop = "mesecons:wire_00000000_off",
mesecon_wire = true,
sounds = default.node_sound_defaults(),
sounds = mesecon.node_sound.default,
on_rotate = false,
}, {tiles = tiles_off, mesecons = meseconspec_off, groups = groups_off},
{tiles = tiles_on, mesecons = meseconspec_on, groups = groups_on})
@ -232,20 +232,20 @@ register_wires()
minetest.register_craft({
type = "cooking",
output = "mesecons:wire_00000000_off 2",
recipe = "default:mese_crystal_fragment",
recipe = "mesecons_gamecompat:mese_crystal_fragment",
cooktime = 3,
})
minetest.register_craft({
type = "cooking",
output = "mesecons:wire_00000000_off 18",
recipe = "default:mese_crystal",
recipe = "mesecons_gamecompat:mese_crystal",
cooktime = 15,
})
minetest.register_craft({
type = "cooking",
output = "mesecons:wire_00000000_off 162",
recipe = "default:mese",
recipe = "mesecons_gamecompat:mese",
cooktime = 30,
})

View File

@ -1,2 +1,2 @@
name = mesecons_wires
depends = default, mesecons
depends = mesecons, mesecons_gamecompat