From 2c7377886982db54f9177d78a6546874fdff8594 Mon Sep 17 00:00:00 2001 From: tacigar Date: Wed, 14 Sep 2016 09:21:45 +0900 Subject: [PATCH] [ADD] Add recipe empty core --- maidroid_core/cores/empty.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/maidroid_core/cores/empty.lua b/maidroid_core/cores/empty.lua index 163fd05..18f19f9 100644 --- a/maidroid_core/cores/empty.lua +++ b/maidroid_core/cores/empty.lua @@ -12,3 +12,14 @@ maidroid.register_core("maidroid_core:empty", { on_pause = function(self) end, on_step = function(self, dtime) end, }) + +-- only a recipe of the empty core is registered. +-- other cores is created by writing on the empty core. +minetest.register_craft{ + output = "maidroid_core:empty", + recipe = { + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + {"default:steel_ingot", "default:obsidian", "default:steel_ingot"}, + {"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"}, + }, +}