Merge pull request #10335 from VOREStation/Arokha/dels

Various qdel helpers
This commit is contained in:
Aronai Sieyes
2021-05-20 15:04:37 -04:00
committed by Chompstation Bot
parent ad149bb509
commit bc6564deb6
8 changed files with 32 additions and 8 deletions

View File

@@ -106,7 +106,12 @@
while(null in owner.organs)
owner.organs -= null
implants.Cut() //VOREStation Add - Remove these too!
for(var/imp in implants)
var/obj/item/weapon/implant/I = imp
if(!istype(I))
continue
I.imp_in = I.part = null
implants.Cut()
return ..()