Skip to content

Commit

Permalink
Makes the kitchen cold room AC be cold
Browse files Browse the repository at this point in the history
  • Loading branch information
Wisemonster committed Sep 26, 2024
1 parent bfa82d7 commit 2c0cee9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/modules/atmospherics/machinery/air_alarm/_air_alarm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/airalarm, 27)
/obj/machinery/airalarm/proc/set_tlv_cold_room()
tlv_collection["temperature"] = new /datum/tlv/cold_room_temperature
tlv_collection["pressure"] = new /datum/tlv/cold_room_pressure
stop_ac() //monkestation addition: prevents cold rooms from heating up from the air conditioning
//monkestation addition start: helps keep cold rooms cold
ac_temp_target = COLD_ROOM_TEMP
ac_temp_min = COLD_ROOM_TEMP - 5
ac_temp_max = COLD_ROOM_TEMP + 5
//monkestation addition end

///Used for air alarm no tlv helper, which removes alarm thresholds
/obj/machinery/airalarm/proc/set_tlv_no_checks()
Expand Down

0 comments on commit 2c0cee9

Please sign in to comment.