From ce06589c2ab15d69b8873a3cf4b90985a190bc37 Mon Sep 17 00:00:00 2001 From: lass9030 Date: Mon, 4 Feb 2019 22:26:05 +0100 Subject: [PATCH] checks for moveresist --- code/modules/reagents/chemistry/recipes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes.dm b/code/modules/reagents/chemistry/recipes.dm index 281bed84b0e..3464b145f6a 100644 --- a/code/modules/reagents/chemistry/recipes.dm +++ b/code/modules/reagents/chemistry/recipes.dm @@ -70,7 +70,7 @@ var/list/chemical_mob_spawn_nicecritters = list() // and possible friendly mobs if(istype(X, /obj/effect)) continue //stop pulling smoke and hotspots please if(istype(X, /atom/movable)) - if((X) && !X.anchored) + if((X) && !X.anchored && X.move_resist <= MOVE_FORCE_DEFAULT) if(setting_type) playsound(T, 'sound/effects/bang.ogg', 25, 1) for(var/i = 0, i < pull_times, i++)