From 4c0c7682433a6da363ed8d608766fe8b52b70669 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Fri, 6 Mar 2026 18:55:27 -0500 Subject: yayyy hugbug --- src/bullet.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bullet.odin') diff --git a/src/bullet.odin b/src/bullet.odin index 457ec9c..c8d6fb8 100644 --- a/src/bullet.odin +++ b/src/bullet.odin @@ -90,7 +90,7 @@ update_bullets :: proc(dt: f32) { enemy := transmute(^Enemy)phys.get_udata(body) if enemy.health > 0 { - enemy_take_damage(enemy, 1, linalg.normalize(b.vel) * 100) + enemy_take_damage(enemy, 4, linalg.normalize(b.vel) * 100) delete_bullet(b.handle) } } -- cgit v1.3-2-g0d8e