diff --git a/projectile.go b/projectile.go index 3d6472a..2ef2d34 100644 --- a/projectile.go +++ b/projectile.go @@ -100,7 +100,11 @@ func (p *Projectile) Tick(g *game) { p.Owner.gameStats.Hits++ if r.Health <= 0 { r.gameStats.Deaths++ - p.Owner.gameStats.Kills++ + if r == p.Owner { + p.Owner.gameStats.Suicides++ + } else { + p.Owner.gameStats.Kills++ + } } } }