Rename mod: default to mcl_core

This commit is contained in:
Wuzzy 2017-01-31 23:32:56 +01:00
parent d0ecf0c66c
commit 02fe45bca2
393 changed files with 2205 additions and 2210 deletions

View file

@ -8,7 +8,7 @@ minetest.register_node("mcl_farming:mushroom_brown", {
paramtype = "light",
walkable = false,
groups = {dig_immediate=3,flammable=2,mushroom=1,attached_node=1,dig_by_water=1,deco_block=1},
sounds = default.node_sound_leaves_defaults(),
sounds = mcl_core.node_sound_leaves_defaults(),
light_source = 1,
selection_box = {
type = "fixed",
@ -26,7 +26,7 @@ minetest.register_node("mcl_farming:mushroom_red", {
paramtype = "light",
walkable = false,
groups = {dig_immediate=3,flammable=2,mushroom=1,attached_node=1,dig_by_water=1,deco_block=1},
sounds = default.node_sound_leaves_defaults(),
sounds = mcl_core.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = { -0.15, -0.5, -0.15, 0.15, 0.015, 0.15 },
@ -36,7 +36,7 @@ minetest.register_node("mcl_farming:mushroom_red", {
minetest.register_craftitem("mcl_farming:mushroom_stew", {
description = "Mushroom Stew",
inventory_image = "farming_mushroom_stew.png",
on_use = minetest.item_eat(6, "default:bowl"),
on_use = minetest.item_eat(6, "mcl_core:bowl"),
groups = { food = 2, eatable = 6 },
stack_max = 1,
})
@ -44,5 +44,5 @@ minetest.register_craftitem("mcl_farming:mushroom_stew", {
minetest.register_craft({
type = "shapeless",
output = "mcl_farming:mushroom_stew",
recipe = {'default:bowl', 'mcl_farming:mushroom_brown', 'mcl_farming:mushroom_red'}
recipe = {'mcl_core:bowl', 'mcl_farming:mushroom_brown', 'mcl_farming:mushroom_red'}
})