From 74cbfc57a33ac5562293ff9b530e4abac8931f17 Mon Sep 17 00:00:00 2001 From: Luc <89928798+lewcc@users.noreply.github.com> Date: Mon, 13 Mar 2023 18:27:37 -0400 Subject: [PATCH] fixes venus trap (#20526) --- .../modules/mob/living/simple_animal/hostile/venus_human_trap.dm | 1 + 1 file changed, 1 insertion(+) 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 e5d0719619d..02c562776a8 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 @@ -114,6 +114,7 @@ if(O.density) return var/dist = get_dist(src,the_target) + changeNext_move(CLICK_CD_MELEE) Beam(the_target, "vine", time=dist*2, maxdistance=dist+2, beam_type=/obj/effect/ebeam/vine) the_target.attack_animal(src)