Add missing newlines to prints

This commit is contained in:
Marc Di Luzio 2020-06-06 16:33:56 +01:00
parent ea67fe1cbe
commit 6ac5a559b5
2 changed files with 6 additions and 6 deletions

View file

@ -235,7 +235,7 @@ func (w *World) ExecuteCommandQueues() {
// ExecuteCommand will execute a single command
func (w *World) ExecuteCommand(c *Command, rover uuid.UUID) (finished bool, err error) {
fmt.Printf("Executing command: %+v", *c)
fmt.Printf("Executing command: %+v\n", *c)
switch c.Command {
case "move":