mirror of
https://codeberg.org/usrib/emeraldbank.git
synced 2024-11-19 22:23:50 +01:00
ident fix
This commit is contained in:
parent
85b8eecc34
commit
3708d5d1df
14
init.lua
14
init.lua
@ -28,12 +28,12 @@ local start_balance = tonumber(core.settings:get("emeraldbank.start_balance")) o
|
||||
local show_tab = core.settings:get_bool("emeraldbank.inv_tab", true)
|
||||
|
||||
atm = {
|
||||
balance = {},
|
||||
startbalance = start_balance,
|
||||
pending_transfers = {},
|
||||
completed_transactions = {},
|
||||
pth = minetest.get_worldpath().."/atm_accounts",
|
||||
pth_wt = minetest.get_worldpath().."/atm_wt_transactions"
|
||||
balance = {},
|
||||
startbalance = start_balance,
|
||||
pending_transfers = {},
|
||||
completed_transactions = {},
|
||||
pth = minetest.get_worldpath().."/atm_accounts",
|
||||
pth_wt = minetest.get_worldpath().."/atm_wt_transactions"
|
||||
}
|
||||
|
||||
dofile(modpath .. "/atm.lua") -- file common.lua from atm mod
|
||||
@ -49,7 +49,7 @@ if show_tab then
|
||||
end
|
||||
|
||||
if income_enabled then
|
||||
dofile(modpath .. "/income.lua")
|
||||
dofile(modpath .. "/income.lua")
|
||||
end
|
||||
|
||||
minetest.register_on_joinplayer(emeraldbank.update_accounts)
|
||||
|
Loading…
Reference in New Issue
Block a user