Changelog + Whoopsies

This commit is contained in:
PJB3005
2015-06-20 21:12:24 +02:00
parent e6ac35d67f
commit 5c67d46be4
3 changed files with 10 additions and 6 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -4,3 +4,8 @@ changes:
- bugfix: Fixed the R-UST Mk. 7 Gyrotrons and fuel injectors.
- rscadd: Gyrotron control computers can now be built.
- tweak: Gyrotrons now need to be linked to the computer with a multitool.
- rscdel: Removed the interface from the R-UST Mk. 7 tokamak, don't worry there's still the core control computer.
- tweak: R-UST Mk. 7 tokamaks now need to be linked to their control computers via multitool.
- tweak: Cleaned up the code for R-UST Mk. 7 core control computers.
- rscadd: Added the R-UST Mk. 7 tokamak core monitoring computer.
- rscdel: Removes substantial features from disabling the R-UST Mk. 7 EM field.