From ec86215718e27b04b991d576785b829c657bf92e Mon Sep 17 00:00:00 2001 From: TheFurryFeline <38586851+TheFurryFeline@users.noreply.github.com> Date: Sun, 6 Oct 2019 19:48:35 -0400 Subject: [PATCH] Throw Spam Fix Title, ported from https://github.com/PolarisSS13/Polaris/pull/6463 --- code/modules/mob/living/living.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 6d97f616cc..7db8e1e7a4 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1226,6 +1226,7 @@ default behaviour is: var/turf/end_T = get_turf(target) if(end_T) add_attack_logs(src,M,"Thrown via grab to [end_T.x],[end_T.y],[end_T.z]") + src.drop_from_inventory(G) //CHOMPStation Edit TFF 6/10/19 - Throw-spam with grab fix, drop when done. src.drop_from_inventory(item) if(!item || !isturf(item.loc))