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,11 +100,15 @@ func (p *Projectile) Tick(g *game) {
p.Owner.gameStats.Hits++ p.Owner.gameStats.Hits++
if r.Health <= 0 { if r.Health <= 0 {
r.gameStats.Deaths++ r.gameStats.Deaths++
if r == p.Owner {
p.Owner.gameStats.Suicides++
} else {
p.Owner.gameStats.Kills++ p.Owner.gameStats.Kills++
} }
} }
} }
} }
}
} else { } else {
p.Position.X = newPos.X p.Position.X = newPos.X
p.Position.Y = newPos.Y p.Position.Y = newPos.Y