Rename mod: default to mcl_core
This commit is contained in:
parent
d0ecf0c66c
commit
02fe45bca2
393 changed files with 2205 additions and 2210 deletions
|
@ -4,7 +4,7 @@ minetest.register_node("mesecons_lightstone:lightstone_off", {
|
|||
groups = {cracky=2, mesecon_effector_off = 1, mesecon = 2},
|
||||
is_ground_content = false,
|
||||
description= "Redstone Lamp",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
sounds = mcl_core.node_sound_stone_defaults(),
|
||||
mesecons = {effector = {
|
||||
action_on = function (pos, node)
|
||||
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_on")
|
||||
|
@ -19,7 +19,7 @@ minetest.register_node("mesecons_lightstone:lightstone_on", {
|
|||
drop = "node mesecons_lightstone:lightstone_off",
|
||||
is_ground_content = false,
|
||||
light_source = 14,
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
sounds = mcl_core.node_sound_stone_defaults(),
|
||||
mesecons = {effector = {
|
||||
action_off = function (pos, node)
|
||||
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_off")
|
||||
|
@ -31,7 +31,7 @@ minetest.register_craft({
|
|||
output = "node mesecons_lightstone:lightstone_off",
|
||||
recipe = {
|
||||
{'',"mesecons:redstone",''},
|
||||
{"mesecons:redstone",'default:glowstone',"mesecons:redstone"},
|
||||
{"mesecons:redstone",'mcl_core:glowstone',"mesecons:redstone"},
|
||||
{'','mesecons:redstone',''},
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue