|
|
@@ -52,7 +52,7 @@ func (game *Game) drawCoords() {
|
|
|
|
|
|
func (game *Game) drawDebug() {
|
|
|
var x, y int = 40, 24
|
|
|
- for _, r := range []rune("[ NumGoRoutine: " + strconv.FormatInt(int64(runtime.NumGoroutine()), 10) + " ]") {
|
|
|
+ for _, r := range []rune("[ NumGoRoutine: " + strconv.FormatInt(int64(runtime.NumGoroutine()), 10) + " Bots: " + strconv.FormatInt(int64(len(game.robots)), 10) + " ]") {
|
|
|
game.screen.SetContent(x, y-1, r, nil, game.style)
|
|
|
x++
|
|
|
}
|