mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-21 12:04:48 +01:00
small fix (#19949)
This commit is contained in:
@@ -42,10 +42,10 @@
|
||||
data["accounts"] = list()
|
||||
for(var/datum/money_account/account as anything in GLOB.station_money_database.user_accounts)
|
||||
var/list/account_data = list(
|
||||
"account_number" = account.account_number,
|
||||
"account_number" = "[account.account_number]",
|
||||
"owner_name" = account.account_name,
|
||||
"suspended" = account.suspended ? "SUSPENDED" : "Active",
|
||||
"money" = account.credit_balance)
|
||||
"money" = "[account.credit_balance]") // needs to be strings because of TGUI localeCompare
|
||||
data["accounts"] += list(account_data)
|
||||
data["department_accounts"] = list()
|
||||
for(var/datum/money_account/account as anything in GLOB.station_money_database.get_all_department_accounts())
|
||||
|
||||
Reference in New Issue
Block a user