mirror of
https://github.com/minetest-mods/BobBlocks.git
synced 2024-11-14 14:50:18 +01:00
11 lines
525 B
Lua
11 lines
525 B
Lua
print("[BobBlocks By minetest@rabbibob.com] Version 0.0.8 loading....")
|
|
print("[BobBlocks] loading Blocks")
|
|
dofile(minetest.get_modpath("bobblocks") .. "/blocks.lua")
|
|
print("[BobBlocks] loaded Blocks")
|
|
print("[BobBlocks] loading Health")
|
|
dofile(minetest.get_modpath("bobblocks") .. "/health.lua")
|
|
print("[BobBlocks] loaded Health")
|
|
print("[BobBlocks] loading Traps")
|
|
dofile(minetest.get_modpath("bobblocks") .. "/trap.lua")
|
|
print("[BobBlocks] loaded Traps")
|
|
print("[BobBlocks By minetest@rabbibob.com] Version 0.0.8 loaded!") |