mirror of
https://gitlab.com/lunovox/minertrade.git
synced 2025-03-15 05:31:20 +00:00
21 lines
729 B
Lua
21 lines
729 B
Lua
local modPath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
dofile(modPath.."/config.lua") -- <== Antes de carregar tudo!
|
|
dofile(modPath.."/translate.lua") -- <== Antes de 'api.lua'!
|
|
dofile(modPath.."/api.lua")
|
|
dofile(modPath.."/item_exchange_table.lua")
|
|
dofile(modPath.."/item_dispensing_machine.lua")
|
|
|
|
dofile(modPath.."/item_atm.lua")
|
|
--dofile(modPath.."/item_strongbox.lua")
|
|
--dofile(modPath.."/item_strongbox_old.lua")
|
|
dofile(modPath.."/item_minercash.lua")
|
|
--dofile(path.."/item_rent_door.lua")
|
|
dofile(modPath.."/api_payday.lua")
|
|
--dofile(modPath.."/commands.lua")
|
|
|
|
--if modMinerTrade.doBankLoad ~= nil then
|
|
modMinerTrade.doBankLoad()
|
|
--end
|
|
|
|
minetest.log('action',"["..modMinerTrade.modName:upper().."] Loaded!")
|