Fixes recycler deleting all clothing for mobs found inside items (e.g. bluespace bodybags)

This commit is contained in:
Ghommie
2019-10-20 15:41:48 +02:00
parent c59f15a8bc
commit ef35aefe4e
+1 -1
View File
@@ -99,7 +99,7 @@
/obj/machinery/recycler/proc/eat(atom/AM0, sound=TRUE)
var/list/to_eat
if(isitem(AM0))
to_eat = AM0.GetAllContents()
to_eat = AM0.GetAllContentsIgnoring(GLOB.typecache_mob)
else
to_eat = list(AM0)