mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-02-02 12:29:36 +00:00
* Fix Xenomorphs not being able to generate plasma for their abilities. (#55051) Fixes #55006 #54632 added some code to handle organ processing, including a big ol' global list which defines the organ processing order. Downside to this is that it didn't take account of 5 year old Xenomorph code where the organ slots weren't defines. As a result, `/mob/living/carbon/proc/handle_organs()` would never call the `on_life()` for Xeno organs as they weren't in the big ol' global list. I created defines for Xeno organs, added them to the global list and updated the organs with the new defines. As a result, Xeno plasma vessels now have their `on_life()` proc fired once again and generate plasma. In local testing I was generating the expected amount of plasma on and off weeds and was able to successfully evolve up to a Queen. * Fix Xenomorphs not being able to generate plasma for their abilities. Co-authored-by: Timberpoes <silent_insomnia_pp@hotmail.co.uk>