Adds moles to the supermatter monitor (#13915)

* Adds moles to the supermatter monitor

* Fixes some indentation

* pain
This commit is contained in:
SapphicOverload
2022-04-30 09:25:41 -04:00
committed by GitHub
parent 26fbfb350c
commit 38df6ec44c
2 changed files with 19 additions and 0 deletions

View File

@@ -137,11 +137,13 @@
data["SM_power"] = active.power + round((rand()-0.5)*12000,1)
data["SM_ambienttemp"] = air.return_temperature() + round((rand()-0.5)*20000,1)
data["SM_ambientpressure"] = air.return_pressure() + round((rand()-0.5)*15000,1)
data["SM_moles"] = air.total_moles() + round((rand()-0.5)*1800,1)
else
data["SM_integrity"] = active.get_integrity()
data["SM_power"] = active.power
data["SM_ambienttemp"] = air.return_temperature()
data["SM_ambientpressure"] = air.return_pressure()
data["SM_moles"] = air.total_moles()
//data["SM_EPR"] = round((air.total_moles / air.group_multiplier) / 23.1, 0.01)
var/list/gasdata = list()