diff options
Diffstat (limited to 'go')
| -rw-r--r-- | go/game/action.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/go/game/action.go b/go/game/action.go index 1d34a843..44fdd97e 100644 --- a/go/game/action.go +++ b/go/game/action.go @@ -526,12 +526,12 @@ func newArtifactMoveAction(u *Unit, artifact Permanent) *ArtifactMoveAction { func (a *ArtifactMoveAction) String() string { if !a.Targets().HasSelections() { - return fmt.Sprintf("%v move %v", a.Source().(*Unit), a.Artifact) + return fmt.Sprintf("%v -(%v)>", a.Source().(*Unit), a.Artifact) } t1 := targetTile(a.Targets().ts[0]) t2 := targetTile(a.Targets().ts[1]) - return fmt.Sprintf("%v,%v -> %v,%v", a.Source().(*Unit), a.Artifact, t1, t2) + return fmt.Sprintf("%v -(%v)> %v,%v", a.Source().(*Unit), a.Artifact, t1, t2) } type FullAction struct { |
