moved cryo cells to the same layer as tables - this will look weird for stuff on the top tile ('behind' the cry cell) but beakers wont be hidden underneath it when they're ejected any more, fixed typo in escape shuttle, fixed syntax error in new player setup screen

Signed-off-by: Cael_Aislinn <cael_aislinn@yahoo.com.au>
This commit is contained in:
Cael_Aislinn
2013-01-21 19:25:19 +10:00
parent 66ce65a680
commit bb4be2c86a
3 changed files with 5 additions and 4 deletions

View File

@@ -52,7 +52,7 @@
world << text("\blue <B>Alert: [] authorizations needed until shuttle is launched early</B>", src.auth_need - src.authorized.len) world << text("\blue <B>Alert: [] authorizations needed until shuttle is launched early</B>", src.auth_need - src.authorized.len)
if("Abort") if("Abort")
world << "\blue <B>All authorizations to shorting time for shuttle launch have been revoked!</B>" world << "\blue <B>All authorizations to shortening time for shuttle launch have been revoked!</B>"
src.authorized.len = 0 src.authorized.len = 0
src.authorized = list( ) src.authorized = list( )

View File

@@ -4,7 +4,7 @@
icon_state = "cell-off" icon_state = "cell-off"
density = 1 density = 1
anchored = 1.0 anchored = 1.0
layer = 5 layer = 2.8
var/on = 0 var/on = 0
var/temperature_archived var/temperature_archived

View File

@@ -318,7 +318,8 @@
if(job && IsJobAvailable(job.title)) if(job && IsJobAvailable(job.title))
var/active = 0 var/active = 0
// Only players with the job assigned and AFK for less than 10 minutes count as active // Only players with the job assigned and AFK for less than 10 minutes count as active
for(var/mob/M in player_list) if(M.mind && M.client && M.mind.assigned_job == job && M.client.inactivity <= 10 * 60 * 10) for(var/mob/M in player_list)
if(M.mind && M.mind.assigned_job == job && M.client && M.client.inactivity <= 10 * 60 * 10)
active++ active++
dat += "<a href='byond://?src=\ref[src];SelectedJob=[job.title]'>[job.title] ([job.current_positions]) (Active: [active])</a><br>" dat += "<a href='byond://?src=\ref[src];SelectedJob=[job.title]'>[job.title] ([job.current_positions]) (Active: [active])</a><br>"