mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-07-03 16:10:26 +02:00
Make modpack mostly independent from MTG
This commit is contained in:
@ -23,7 +23,7 @@ function mesecon.lightstone_add(name, base_item, texture_off, texture_on, desc)
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 2, mesecon_effector_off = 1, mesecon = 2},
|
||||
description = desc,
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
sounds = mesecon.node_sound_stone_defaults,
|
||||
mesecons = {effector = {
|
||||
rules = lightstone_rules,
|
||||
action_on = function (pos, node)
|
||||
@ -38,7 +38,7 @@ function mesecon.lightstone_add(name, base_item, texture_off, texture_on, desc)
|
||||
groups = {cracky = 2, not_in_creative_inventory = 1, mesecon = 2},
|
||||
drop = "mesecons_lightstone:lightstone_" .. name .. "_off",
|
||||
light_source = minetest.LIGHT_MAX - 2,
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
sounds = mesecon.node_sound_stone_defaults,
|
||||
mesecons = {effector = {
|
||||
rules = lightstone_rules,
|
||||
action_off = function (pos, node)
|
||||
@ -52,7 +52,7 @@ function mesecon.lightstone_add(name, base_item, texture_off, texture_on, desc)
|
||||
output = "mesecons_lightstone:lightstone_" .. name .. "_off",
|
||||
recipe = {
|
||||
{"",base_item,""},
|
||||
{base_item,"default:torch",base_item},
|
||||
{base_item,"mesecons_compat:torch",base_item},
|
||||
{"","group:mesecon_conductor_craftable",""}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user