From b7b5f619ab3604d2d9a8172b644852ebf88d71ec Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 1 Feb 2017 18:31:02 +0100 Subject: [PATCH] Change internal prismarine crystals name --- mods/mcl_core/crafting.lua | 6 +++--- mods/mcl_core/craftitems.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mods/mcl_core/crafting.lua b/mods/mcl_core/crafting.lua index b741a814c..1af8db623 100644 --- a/mods/mcl_core/crafting.lua +++ b/mods/mcl_core/crafting.lua @@ -444,9 +444,9 @@ minetest.register_craft({ minetest.register_craft({ output = 'mcl_core:sea_lantern', recipe = { - {'mcl_core:prismarine_shard', 'mcl_core:prismarine_cry', 'mcl_core:prismarine_shard'}, - {'mcl_core:prismarine_cry', 'mcl_core:prismarine_cry', 'mcl_core:prismarine_cry'}, - {'mcl_core:prismarine_shard', 'mcl_core:prismarine_cry', 'mcl_core:prismarine_shard'}, + {'mcl_core:prismarine_shard', 'mcl_core:prismarine_crystals', 'mcl_core:prismarine_shard'}, + {'mcl_core:prismarine_crystals', 'mcl_core:prismarine_crystals', 'mcl_core:prismarine_crystals'}, + {'mcl_core:prismarine_shard', 'mcl_core:prismarine_crystals', 'mcl_core:prismarine_shard'}, } }) diff --git a/mods/mcl_core/craftitems.lua b/mods/mcl_core/craftitems.lua index f55d125ed..c78a353f0 100644 --- a/mods/mcl_core/craftitems.lua +++ b/mods/mcl_core/craftitems.lua @@ -132,7 +132,7 @@ minetest.register_craftitem("mcl_core:bowl",{ groups = { craftitem = 1 }, }) -minetest.register_craftitem("mcl_core:prismarine_cry", { +minetest.register_craftitem("mcl_core:prismarine_crystals", { description = "Prismarine Crystals", inventory_image = "default_prismarine_crystals.png", stack_max = 64,