From 01a5723f8c3b8d01af29406de592517f06260eaf Mon Sep 17 00:00:00 2001 From: Fox McCloud Date: Mon, 8 Jun 2020 21:57:07 -0400 Subject: [PATCH] [s] Fixes Ghost Exploit (#13580) --- code/modules/shuttle/supply.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/shuttle/supply.dm b/code/modules/shuttle/supply.dm index e1aa537f8a8..50cf7ff7d28 100644 --- a/code/modules/shuttle/supply.dm +++ b/code/modules/shuttle/supply.dm @@ -102,7 +102,10 @@ var/pointsEarned for(var/atom/movable/MA in areaInstance) - if(MA.anchored) continue + if(MA.anchored) + continue + if(istype(MA, /mob/dead)) + continue SSshuttle.sold_atoms += " [MA.name]" // Must be in a crate (or a critter crate)!