Added observer verb View Gases (#34574)

* Added observer verb View Gases

* Fixed atmospheric report plurality correctness

* Changed mole/s to mol.
This commit is contained in:
Buggy123
2018-01-19 10:22:41 -05:00
committed by CitadelStationBot
parent c6f227fc18
commit 57c829a2aa
2 changed files with 11 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
var/gas = env_gases[id]
var/moles = gas[MOLES]
if (moles >= 0.00001)
lines += "[gas[GAS_META][META_GAS_NAME]]: [moles]"
lines += "[gas[GAS_META][META_GAS_NAME]]: [moles] mol"
to_chat(usr, lines.Join("\n"))
/client/proc/air_status(turf/target)