Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
25
mods/simple_furniture/init.lua
Normal file
25
mods/simple_furniture/init.lua
Normal file
|
@ -0,0 +1,25 @@
|
|||
-- simple_furniture/init.lua
|
||||
|
||||
-- Loads The LUA Files For The Mod
|
||||
|
||||
local path = minetest.get_modpath("simple_furniture")
|
||||
|
||||
dofile(path .. "/sf_benches.lua")
|
||||
dofile(path .. "/sf_chairs.lua")
|
||||
|
||||
dofile(path .. "/sf_end_tables.lua")
|
||||
dofile(path .. "/sf_dining_tables.lua")
|
||||
|
||||
dofile(path .. "/sf_cabinets.lua")
|
||||
|
||||
dofile(path .. "/sf_crafting.lua")
|
||||
|
||||
-- These Are For When Cropocalypse And/Or Dynamic Trees Are Installed
|
||||
-- Checks If Cropocalypse Is Installed
|
||||
if minetest.get_modpath("cropocalypse") then
|
||||
dofile(path .. "/sf_cropocalypse.lua")
|
||||
end
|
||||
-- Checks If Dynamic Trees Is Installed
|
||||
if minetest.get_modpath("dynamic_trees") then
|
||||
dofile(path .. "/sf_dynamic_trees.lua")
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue