From 0331bd861b9fede8e5750b5ab233d4d66ab782b8 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 3 Aug 2024 20:38:40 -0400 Subject: [PATCH] Fix character card script to place action tokens in new location --- src/playermat/Playermat.ttslua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/playermat/Playermat.ttslua b/src/playermat/Playermat.ttslua index 32874e54..9c32130b 100644 --- a/src/playermat/Playermat.ttslua +++ b/src/playermat/Playermat.ttslua @@ -977,7 +977,7 @@ function maybeUpdateActiveInvestigator(card) -- spawn three regular action tokens (investigator specific one in the bottom spot) for i = 1, 3 do - local pos = self.positionToWorld(Vector(-1.54 + i * 0.17, 0, -0.28)):add(Vector(0, 0.2, 0)) + local pos = self.positionToWorld(Vector(-1.54 + i * 0.17, 0, -1.13)):add(Vector(0, 0.2, 0)) tokenManager.spawnToken(pos, "universalActionAbility", self.getRotation(), function(spawned) @@ -990,8 +990,8 @@ function maybeUpdateActiveInvestigator(card) -- local positions local tokenSpawnPos = { action = { - Vector(-0.86, 0, -0.28), -- left of the regular three actions - Vector(-1.54, 0, -0.28), -- right of the regular three actions + Vector(-0.86, 0, -1.13), -- left of the regular three actions + Vector(-1.54, 0, -1.13), -- right of the regular three actions }, ability = { Vector(-1, 0, 0.118), -- bottom left corner of the investigator card