diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 2bb8c5ab2f7..fdbfe06905f 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -260,6 +260,7 @@ Turf and target are seperate in case you want to teleport some distance from a t user.visible_message("[user] has used the analyzer on [target].", "You use the analyzer on [target].") var/pressure = air_contents.return_pressure() var/total_moles = air_contents.total_moles() + var/volume = air_contents.return_volume() user.show_message("Results of analysis of [bicon(icon)] [target].", 1) if(total_moles>0) @@ -281,8 +282,10 @@ Turf and target are seperate in case you want to teleport some distance from a t user.show_message("Unknown: [round(unknown_concentration*100)] % ([round(unknown_concentration*total_moles,0.01)] moles)", 1) user.show_message("Total: [round(total_moles,0.01)] moles", 1) user.show_message("Temperature: [round(air_contents.temperature-T0C)] °C", 1) + user.show_message("Volume: [round(volume)] Liters", 1) else user.show_message("[target] is empty!", 1) + user.show_message("Volume: [round(volume)] Liters", 1) return //Picks a string of symbols to display as the law number for hacked or ion laws