diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2016-06-25 23:22:36 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2016-06-25 23:22:36 +0200 |
commit | 9d601cb4d6bf3abccfecd2b810c59ba3e64f3300 (patch) | |
tree | 1695b973131461289ae1235274db514b39a07bfd /init.lua | |
parent | b4317fceb6dadf7973acb1bbebfb1b970bdbe7a0 (diff) |
Added interest mechanism
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ atm = {} atm.balance = {} atm.pth = minetest.get_worldpath().."/atm_accounts" +local modpath = minetest.get_modpath("atm") function atm.showform (player) atm.readaccounts() @@ -186,3 +187,4 @@ minetest.register_craft({ {"default:steel_ingot", "default:mese_crystal", "default:steel_ingot"} } }) +dofile(modpath .. "/interest.lua") |