blob: 0d06f3cb6ab699eb3dee873ffd070a131198eb84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
-- RUBENFOOD MOD
-- A mod written by rubenwardy that adds
-- food to the minetest game
-- =====================================
-- >> rubenfood/init.lua
-- inits the mod
-- =====================================
-- [regis-item] Cup
-- [craft] Cup
-- [regis-food] Cigerette (-4)
-- =====================================
print ("Food: Loading extension: [Modern]")
----------------------Load Files-----------------------------
dofile(minetest.get_modpath("food_modern").."/food/sandwich.lua")
dofile(minetest.get_modpath("food_modern").."/snacks/misc.lua")
dofile(minetest.get_modpath("food_modern").."/drinks/hot.lua")
dofile(minetest.get_modpath("food_modern").."/drinks/milkshakes.lua")
print("Food: food_modern extension loaded")
|