mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Changelog + Whoopsies
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
/obj/machinery/computer/rust_core_monitor/interact(var/mob/user)
|
||||
if(linked_core)
|
||||
. = {"
|
||||
<b>Device ID tag:</b>[linked_core.id_tag]<br>
|
||||
<b>Device ID tag:</b> [linked_core.id_tag]<br>
|
||||
"}
|
||||
if(!check_core_status())
|
||||
. += {"
|
||||
@@ -36,8 +36,7 @@
|
||||
"}
|
||||
if(linked_core.owned_field)
|
||||
. += {"
|
||||
<b>Field longer diameter (m):</b> [linked_core.owned_field.major_radius]<br>
|
||||
<b>Field shorter diameter (m):</b> [linked_core.owned_field.minor_radius]<br>
|
||||
<b>Approximate field diameter (m):</b> [linked_core.owned_field.size]<br>
|
||||
<b>Field mega energy:</b> [linked_core.owned_field.mega_energy]<br>
|
||||
<b>Field sub-mega energy:</b> [linked_core.owned_field.energy]<hr>
|
||||
<b>Field dormant reagents:</b><br>
|
||||
|
||||
@@ -49,13 +49,13 @@
|
||||
for(var/obj/machinery/rust/gyrotron/gyro in linked_gyrotrons)
|
||||
//These vars are here because muh readable HTML code.
|
||||
var/gyro_id = linked_gyrotrons.Find(gyro)
|
||||
var/status = ((state != 2 || gyro.stat & (NOPOWER | BROKEN)) ? "<span style='color: red'>Unresponsive</span>" : "<span style='color: green'>Operational</span>")
|
||||
var/status = ((gyro.state != 2 || gyro.stat & (NOPOWER | BROKEN)) ? "<span style='color: red'>Unresponsive</span>" : "<span style='color: green'>Operational</span>")
|
||||
dat += {"
|
||||
</tr>
|
||||
<td>[gyro.id_tag]</td>
|
||||
<td>[status]</td>
|
||||
"}
|
||||
if(state != 2 || gyro.stat & (NOPOWER | BROKEN)) //Error data not found.
|
||||
if(gyro.state != 2 || gyro.stat & (NOPOWER | BROKEN)) //Error data not found.
|
||||
dat += {"
|
||||
<td><span style='color: red'>ERROR</span></td>
|
||||
<td><span style='color: red'>ERROR</span></td>
|
||||
|
||||
Reference in New Issue
Block a user