mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 00:29:02 +01:00
[MIRROR] Fix incorrect proc signature for /mob/living/proc/Life (#734)
* Fix incorrect proc signature for /mob/living/proc/Life (#53565) #52981 changed how Life() procs were called. It also forgot to re-define the Life proc signature after doing so. This gives Life the appropriate signature. Our intended breathing mechanic of once every 4 life ticks became every single life tick, effectively making mobs breathe 4 times as often as they should. Oh, my dear Atmos subsystem, how you must be crying in pain! * Fix incorrect proc signature for /mob/living/proc/Life Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/// This divisor controls how fast body temperature changes to match the environment
|
||||
#define BODYTEMP_DIVISOR 8
|
||||
|
||||
/mob/living/proc/Life(seconds, times_fired)
|
||||
/mob/living/proc/Life(times_fired)
|
||||
set waitfor = FALSE
|
||||
|
||||
if((movement_type & FLYING) && !(movement_type & FLOATING)) //TODO: Better floating
|
||||
|
||||
Reference in New Issue
Block a user