From 0c9d96375dfad68c97fe33f82f6911f81921ae57 Mon Sep 17 00:00:00 2001 From: TotallyNot <44345987+TotallyNot@users.noreply.github.com> Date: Tue, 4 Nov 2025 19:48:16 +0100 Subject: [PATCH] fix: make head hits possible again --- models/src/bundle/stat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/src/bundle/stat.rs b/models/src/bundle/stat.rs index 7eb8ab5..2903fd4 100644 --- a/models/src/bundle/stat.rs +++ b/models/src/bundle/stat.rs @@ -102,7 +102,7 @@ impl rand::distr::Distribution for SimpleStatEffective { match rng.random_range(1..=10) { 1 => BodyPart::Heart, 2 => BodyPart::Throat, - _ => BodyPart::Heart, + _ => BodyPart::Head, } } else { match rng.random_range(1..=20) {