minertrade/init.lua

23 lines
814 B
Lua
Raw Normal View History

local modPath = minetest.get_modpath(minetest.get_current_modname())
2017-03-13 18:26:38 -03:00
dofile(modPath.."/config.lua") -- <== Antes de carregar tudo!
dofile(modPath.."/translate.lua") -- <== Antes de 'api.lua'!
dofile(modPath.."/api.lua")
2023-08-09 06:00:25 -03:00
dofile(modPath.."/item_paper_written.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(modPath.."/item_computing_app.lua")
2022-05-12 23:32:22 -03:00
--dofile(path.."/item_rent_door.lua")
dofile(modPath.."/api_payday.lua")
--dofile(modPath.."/commands.lua")
2022-05-12 11:32:28 -03:00
2022-05-12 23:32:22 -03:00
--if modMinerTrade.doBankLoad ~= nil then
modMinerTrade.doBankLoad()
--end
2017-03-13 18:26:38 -03:00
2022-05-12 17:03:46 -03:00
minetest.log('action',"["..modMinerTrade.modName:upper().."] Loaded!")