diff options
author | gpcf <gpcf@gpcf.eu> | 2024-09-22 16:14:10 +0200 |
---|---|---|
committer | gpcf <gpcf@gpcf.eu> | 2024-09-22 16:14:10 +0200 |
commit | 07497d8957d1969af9b08ee35899609892438bc8 (patch) | |
tree | 47436232ea67b27119a931a5bd4cc056724e2a36 /init.lua | |
parent | 925b6f62e4ce62aa4c06ee2a3a444eebf5b5c307 (diff) | |
download | atm-07497d8957d1969af9b08ee35899609892438bc8.tar.gz atm-07497d8957d1969af9b08ee35899609892438bc8.tar.bz2 atm-07497d8957d1969af9b08ee35899609892438bc8.zip |
Add chat command for welfare, add unit tests and mod.conf
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,7 +5,8 @@ atm = {} atm.balance = {} atm.welfare = {} -atm.default_welfare = 1000 +atm.welfare_cap = 1000 -- +atm.welfare_amount = 5 atm.pending_transfers = {} atm.completed_transactions = {} atm.pth = minetest.get_worldpath().."/atm_accounts" |