Merge pull request #9050 from Fox-McCloud/weather-subsystem

Converts and Updates Weather Subsystem
This commit is contained in:
tigercat2000
2018-06-13 16:08:02 -07:00
committed by GitHub
51 changed files with 608 additions and 426 deletions
+4
View File
@@ -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)