diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2025-07-24 17:31:25 -0400 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-08-20 15:57:30 +0200 |
| commit | 91618ca8f900321eb3038fbbf6bfb4a507652009 (patch) | |
| tree | 76ca4b79d780dacae259eba57457baa2d028d655 | |
| parent | 3bb2b4479ee2a7064f28887f3c83f15f50fc9537 (diff) | |
| download | muhqs-game-91618ca8f900321eb3038fbbf6bfb4a507652009.tar.gz muhqs-game-91618ca8f900321eb3038fbbf6bfb4a507652009.zip | |
set the tile for new artifacts
| -rw-r--r-- | go/game/artifact.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/go/game/artifact.go b/go/game/artifact.go index eb9673ac..6c9cee9d 100644 --- a/go/game/artifact.go +++ b/go/game/artifact.go @@ -18,7 +18,7 @@ func NewArtifactFromPath(cardPath string, tile *Tile, owner *Player) *Artifact { func NewArtifact(card *Card, tile *Tile, owner *Player) *Artifact { a := &Artifact{ - permanentBase: permanentBase{card: card, owner: owner, controller: owner}, + permanentBase: permanentBase{card: card, tile: tile, owner: owner, controller: owner}, } effects := card.getEffects() |
