mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-05 07:02:36 +00:00
* CI now bans files with the same name * Part 1 * Warriorstar python tweaks * Part Deux * Fix unticked * fix
12 lines
341 B
Plaintext
12 lines
341 B
Plaintext
// some legacy code that needs to be moved to /mob/living
|
|
|
|
/mob/proc/RestoreEars()
|
|
return
|
|
|
|
/mob/proc/AdjustEarDamage()
|
|
return
|
|
|
|
/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)
|