mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
Organ Runtime Fix (#2005)
changes: Added a QDELETED check to organ processing so they won't continue to process if they were erroneously left in the processing objects list after being deleted. Fixed a bad robotic organ check on spiders.
This commit is contained in:
@@ -84,7 +84,7 @@
|
||||
var/mob/living/carbon/human/H = .
|
||||
if(prob(poison_per_bite))
|
||||
var/obj/item/organ/external/O = pick(H.organs)
|
||||
if(!(O.robotic >= ORGAN_ROBOT))
|
||||
if(!(O.status & ORGAN_ROBOT))
|
||||
var/eggs = new /obj/effect/spider/eggcluster(O, src)
|
||||
O.implants += eggs
|
||||
H << "<span class='warning'>The [src] injects something into your [O.name]!</span>"
|
||||
|
||||
Reference in New Issue
Block a user