Replaces NT bank accounts with Idris. (#6448)

This commit is contained in:
ParadoxSpace
2019-05-18 13:47:45 -06:00
committed by Werner
parent e359e6be36
commit 1ccf4014b4
5 changed files with 67 additions and 17 deletions

View File

@@ -58,9 +58,9 @@ var/datum/controller/subsystem/economy/SSeconomy
T.target_name = station_account.owner_name
T.purpose = "Account creation"
T.amount = 75000
T.date = "2nd April, 2454"
T.date = "13th May, 2461"
T.time = "11:24"
T.source_terminal = "Biesel GalaxyNet Terminal #277"
T.source_terminal = "Idris Remote Terminal #[rand(111,11111)]"
//add the account
add_transaction_log(station_account,T)
@@ -84,9 +84,9 @@ var/datum/controller/subsystem/economy/SSeconomy
T.target_name = department_account.owner_name
T.purpose = "Account creation"
T.amount = department_account.money
T.date = "2nd April, 2454"
T.date = "13th May, 2461"
T.time = "11:24"
T.source_terminal = "Biesel GalaxyNet Terminal #277"
T.source_terminal = "Idris Remote Terminal #[rand(111,11111)]"
//add the account
add_transaction_log(department_account,T)
@@ -112,10 +112,10 @@ var/datum/controller/subsystem/economy/SSeconomy
T.amount = starting_funds
if(!source_db)
//set a random date, time and location some time over the past few decades
T.date = "[num2text(rand(1,31))] [pick("January","February","March","April","May","June","July","August","September","October","November","December")], 24[rand(10,48)]"
//set a random date from recent months
T.date = "[num2text(rand(1,31))] [pick("January","February","March","April","May")], 2461"
T.time = "[rand(0,24)]:[rand(11,59)]"
T.source_terminal = "NTGalaxyNet Terminal #[rand(111,1111)]"
T.source_terminal = "Idris SelfServ Terminal #[rand(111,11111)]"
else
T.date = worlddate2text()
T.time = worldtime2text()