From 8041eee5a93abebe9f5a739892c15df585fd8d08 Mon Sep 17 00:00:00 2001 From: Bxil Date: Tue, 9 Jan 2018 16:39:37 +0100 Subject: [PATCH] Accounts timefix --- code/modules/economy/Accounts.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/economy/Accounts.dm b/code/modules/economy/Accounts.dm index 620396f7da2..f54ff410368 100644 --- a/code/modules/economy/Accounts.dm +++ b/code/modules/economy/Accounts.dm @@ -72,8 +72,8 @@ var/global/list/all_money_accounts = list() 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")], 25[rand(10,56)]" - T.time = "[rand(0,24)]:[rand(11,59)]" + T.date = "[num2text(rand(1,31))] [pick(month_names)], [rand(game_year - 20,game_year)]" + T.time = "[rand(0,23)]:[rand(0,59)]" T.source_terminal = "NTGalaxyNet Terminal #[rand(111,1111)]" M.account_number = rand(111111, 999999)