From c2218f9dd76bcf4285ffd22d4f2b341b1bdd19dd Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Tue, 21 Jun 2016 01:22:13 +0100 Subject: [PATCH] break -> continue --- .../mob/living/simple_animal/hostile/venus_human_trap.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm index daf6280c094..7e18afcc7e8 100644 --- a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm +++ b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm @@ -95,7 +95,7 @@ for(var/a in t) var/atom/A = a if(A.density && A != L) - break grasping + continue grasping if(prob(grasp_chance)) L << "\the [src] has you entangled!" grasping[L] = Beam(L,"vine",'icons/effects/spacevines.dmi',INFINITY, 5,/obj/effect/ebeam/vine)