mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-22 04:24:20 +01:00
Merge pull request #9050 from Fox-McCloud/weather-subsystem
Converts and Updates Weather Subsystem
This commit is contained in:
@@ -208,3 +208,7 @@
|
||||
|
||||
/mob/proc/AdjustWeakened()
|
||||
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)
|
||||
Reference in New Issue
Block a user