Merge pull request #9551 from Ghommie/Ghommie-cit254

Fixes recycler deleting all clothing for mobs found inside items (e.g bluespace bodybags)
This commit is contained in:
kevinz000
2019-10-22 02:28:56 -07:00
committed by GitHub
+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)