From 807727c73febad55bcb051e167f48ea3023477f4 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Tue, 8 Apr 2025 10:14:14 +0200 Subject: [PATCH] bigger explosion effect radius --- src/abilities/thrown.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/abilities/thrown.rs b/src/abilities/thrown.rs index 76d7800..1e304a6 100644 --- a/src/abilities/thrown.rs +++ b/src/abilities/thrown.rs @@ -160,7 +160,8 @@ fn shot_collision( commands.trigger(Explosion { damage: 20, position: shot_pos, - radius: 2., + //TODO: should be around 1 grid in distance + radius: 5., }); commands