From 790cf5e640c13e5ae53c02b6063740a1aae3d035 Mon Sep 17 00:00:00 2001 From: Zwei <35403274+Gottfrei@users.noreply.github.com> Date: Wed, 10 Jul 2024 21:34:15 +0300 Subject: [PATCH] bugfix: Correct Boolean Value (#5406) --- code/modules/mob/living/living.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 8cb8e4860f1..0746224bd5b 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -459,7 +459,7 @@ // otherwise chance to hit is defined by the projectile var/hit_crawling_mobs_chance if(projectile.hit_crawling_mobs_chance > 0 && projectile.hit_crawling_mobs_chance <= 100) return !prob(projectile.hit_crawling_mobs_chance) - return FALSE + return TRUE /mob/living/tompost_bump_override(atom/movable/mover, border_dir)