Merge pull request #10826 from lass9030/sorium-ldm_move-resist_check

Makes vortex chems check for moveresist
This commit is contained in:
variableundefined
2019-02-05 10:18:33 +08:00
committed by GitHub
+1 -1
View File
@@ -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++)