mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-25 09:41:29 +00:00
* begone ear_damage * pt 2 * this time actually begone * ears no longer passively heal over time * ears can die * deafness is now a status effect * Oh yeah ticks are every two seconds
6 lines
271 B
Plaintext
6 lines
271 B
Plaintext
// some legacy code that needs to be moved to /mob/living
|
|
|
|
/mob/proc/adjust_bodytemperature(amount, min_temp = 0, max_temp = INFINITY)
|
|
if(bodytemperature >= min_temp && bodytemperature <= max_temp)
|
|
bodytemperature = clamp(bodytemperature + amount, min_temp, max_temp)
|