From 97f7b78dd49efaf3c751b70309d67a81257cdca7 Mon Sep 17 00:00:00 2001 From: hunterluthi Date: Fri, 24 Dec 2010 07:45:54 +0000 Subject: [PATCH] Updating PDAs to include a built-in clock function. Everybody can now keep track of the round (somewhat) by using that. Works on 24 hour time, starting at 12 noon. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@696 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/devices/PDA.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/devices/PDA.dm b/code/game/objects/devices/PDA.dm index 5af62f79b75..8463f0241ee 100644 --- a/code/game/objects/devices/PDA.dm +++ b/code/game/objects/devices/PDA.dm @@ -497,7 +497,9 @@ if (0) dat += "

PERSONAL DATA ASSISTANT

" dat += "Owner: [src.owner], [src.ownjob]
" - dat += text("ID: []", src, (src.id ? "[src.id.registered], [src.id.assignment]" : "----------")) + dat += text("ID: []
", src, (src.id ? "[src.id.registered], [src.id.assignment]" : "----------")) + dat += "Station Time: [round(world.time / 36000)+12]:[(world.time / 600 % 60) < 10 ? add_zero(world.time / 600 % 60, 1) : world.time / 600 % 60]"//:[world.time / 100 % 6][world.time / 100 % 10]" + dat += "

" dat += "

General Functions

"