From acdbb3573a5a99c959d1cd65d3858b7f93cc4993 Mon Sep 17 00:00:00 2001 From: DJSnapshot Date: Fri, 28 Feb 2014 15:28:11 -0800 Subject: [PATCH] Changed supermatter messages to reflect what they actually mean. --- code/modules/power/antimatter/control.dm | 2 +- code/modules/supermatter/supermatter.dm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/power/antimatter/control.dm b/code/modules/power/antimatter/control.dm index 61c6cabb92..b6eb7915d2 100644 --- a/code/modules/power/antimatter/control.dm +++ b/code/modules/power/antimatter/control.dm @@ -276,7 +276,7 @@ dat += "Status: [(active?"Injecting":"Standby")]
" dat += "Toggle Status
" - dat += "Stability: [stability]%
" + dat += "Instability: [stability]%
" dat += "Reactor parts: [linked_shielding.len]
"//TODO: perhaps add some sort of stability check dat += "Cores: [linked_cores.len]

" dat += "-Current Efficiency: [reported_core_efficiency]
" diff --git a/code/modules/supermatter/supermatter.dm b/code/modules/supermatter/supermatter.dm index 4bdd2431ce..f1ca0acc79 100644 --- a/code/modules/supermatter/supermatter.dm +++ b/code/modules/supermatter/supermatter.dm @@ -99,14 +99,14 @@ if(damage > warning_point) // while the core is still damaged and it's still worth noting its status if((world.timeofday - lastwarning) / 10 >= WARNING_DELAY) var/stability = num2text(round((damage / explosion_point) * 100)) - + if(damage > emergency_point) - radio.autosay(addtext(emergency_alert, " Stability: ",stability,"%"), "Supermatter Monitor") + radio.autosay(addtext(emergency_alert, " Instability: ",stability,"%"), "Supermatter Monitor") lastwarning = world.timeofday else if(damage >= damage_archived) // The damage is still going up - radio.autosay(addtext(warning_alert," Stability: ",stability,"%"), "Supermatter Monitor") + radio.autosay(addtext(warning_alert," Instability: ",stability,"%"), "Supermatter Monitor") lastwarning = world.timeofday - 150 else // Phew, we're safe