Merge branch 'master' of ssh://bitbucket.org/hackerbots/botserv

This commit is contained in:
Stephen McQuay 2014-01-23 23:03:44 -08:00
commit 0698f21a0f
1 changed files with 5 additions and 1 deletions

View File

@ -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++
}
}
}
}