More de-scope - remove duration on move command

This isn't even needed, as commands can just be queued up
This commit is contained in:
Marc Di Luzio 2020-06-26 22:26:27 +01:00
parent 383e834cef
commit 2f6465987d
10 changed files with 97 additions and 134 deletions

View file

@ -44,8 +44,7 @@ var data = flag.String("data", defaultDataPath, "data location for storage (or $
// For register command
var name = flag.String("name", "", "used with status command for the account name")
// For the duration command
var duration = flag.Int("duration", 1, "used for the move command duration")
// For the move command
var bearing = flag.String("bearing", "", "used for the move command bearing (compass direction)")
// Config is used to store internal data
@ -166,9 +165,8 @@ func InnerMain(command string) error {
Account: config.Accounts[config.Host],
Commands: []*rove.Command{
{
Command: game.CommandMove,
Duration: int32(*duration),
Bearing: *bearing,
Command: game.CommandMove,
Bearing: *bearing,
},
},
}