diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 47182ff151..182f1a4f27 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -62072,7 +62072,6 @@ departmentType = 2; name = "Chemistry RC"; pixel_x = 30; - pixel_y = 0; receive_ore_updates = 1 }, /turf/open/floor/plasteel/white, diff --git a/code/modules/power/turbine.dm b/code/modules/power/turbine.dm index 3e2c7a1772..e7a97c554f 100644 --- a/code/modules/power/turbine.dm +++ b/code/modules/power/turbine.dm @@ -265,7 +265,7 @@ data["online"] = compressor?.starter data["power"] = DisplayPower(compressor?.turbine?.lastgen) data["rpm"] = compressor?.rpm - data["temp"] = compressor?.gas_contained.temperature + data["temp"] = compressor?.gas_contained.return_temperature() return data /obj/machinery/power/turbine/ui_act(action, params)