From 5af1145d2cfe50fcd61098f3bbc853ef06cbf04e Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Sat, 19 Jul 2025 18:38:05 -0400 Subject: change move action representation --- go/game/action.go | 4 ++-- 1 file 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 { -- cgit v1.2.3