mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 09:31:13 +00:00
Processor status text clarification
Simple enough: the higher the number, the worse the situation.
This commit is contained in:
@@ -254,19 +254,19 @@ datum/controller/process/proc/getStatusText(var/s = 0)
|
||||
s = status
|
||||
switch(s)
|
||||
if(PROCESS_STATUS_IDLE)
|
||||
return "idle"
|
||||
return "idle (-1)"
|
||||
if(PROCESS_STATUS_QUEUED)
|
||||
return "queued"
|
||||
return "queued (0)"
|
||||
if(PROCESS_STATUS_RUNNING)
|
||||
return "running"
|
||||
return "running (1)"
|
||||
if(PROCESS_STATUS_MAYBE_HUNG)
|
||||
return "maybe hung"
|
||||
return "maybe hung (2)"
|
||||
if(PROCESS_STATUS_PROBABLY_HUNG)
|
||||
return "probably hung"
|
||||
return "probably hung (3)"
|
||||
if(PROCESS_STATUS_HUNG)
|
||||
return "HUNG"
|
||||
return "HUNG (4)"
|
||||
else
|
||||
return "UNKNOWN"
|
||||
return "UNKNOWN (?)"
|
||||
|
||||
datum/controller/process/proc/getPreviousStatus()
|
||||
return previousStatus
|
||||
|
||||
Reference in New Issue
Block a user