aboutsummaryrefslogtreecommitdiff
path: root/src/bullet.odin
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-03-06 18:55:27 -0500
committeriamcheeseman <[email protected]>2026-03-06 18:55:27 -0500
commit4c0c7682433a6da363ed8d608766fe8b52b70669 (patch)
tree988538c2e765abe93cfcc5d82885c9814ed37c2d /src/bullet.odin
parent3c7c93a2d844448ac9e8234418a786206a851596 (diff)
yayyy hugbug
Diffstat (limited to 'src/bullet.odin')
-rw-r--r--src/bullet.odin2
1 files changed, 1 insertions, 1 deletions
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)
}
}