summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index ea33011..07a7787 100644
--- a/init.lua
+++ b/init.lua
@@ -10,7 +10,7 @@
-- [regis-food] Cigerette (-4)
-- =====================================
-print ("food: Loading mainframe: [Master]")
+print ("Food: Loading mainframe: [Master]")
----------------------Load Files-----------------------------
dofile(minetest.get_modpath("food").."/support.lua")
@@ -20,6 +20,7 @@ dofile(minetest.get_modpath("food").."/dairy.lua")
dofile(minetest.get_modpath("food").."/food/meats.lua")
dofile(minetest.get_modpath("food").."/food/sandwich.lua")
dofile(minetest.get_modpath("food").."/food/baking.lua")
+dofile(minetest.get_modpath("food").."/food/soup.lua")
dofile(minetest.get_modpath("food").."/snacks/crumbles.lua")
dofile(minetest.get_modpath("food").."/snacks/cakes.lua")
@@ -59,6 +60,13 @@ minetest.register_craft({
recipe = "food:clay_mug",
})
+-----------------------------Bowl-------------------------------
+
+minetest.register_craftitem("food:bowl",{
+ description = "Bowl",
+ inventory_image = "food_bowl.png",
+})
+
-----------------------------Sugar------------------------------
minetest.register_craftitem("food:sugar", {
@@ -88,4 +96,4 @@ minetest.register_craft({
}
})
-print("food: Mainframe loaded") \ No newline at end of file
+print("food: Mainframe loaded")