diff options
Diffstat (limited to 'src/bullet.odin')
| -rw-r--r-- | src/bullet.odin | 2 |
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) } } |
