From 25f863297adf280e2cf49cc9bef677ff19d7d49c Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sun, 28 Jul 2024 00:36:36 -0400 Subject: [PATCH] Move encounter discard buttons to bottom of card --- src/playermat/Playermat.ttslua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playermat/Playermat.ttslua b/src/playermat/Playermat.ttslua index 0610fa75..91834444 100644 --- a/src/playermat/Playermat.ttslua +++ b/src/playermat/Playermat.ttslua @@ -321,7 +321,7 @@ function makeDiscardButton(id) label = "Discard", click_function = handlerName, function_owner = self, - position = position, + position = { position[1], position[2], position[3] + 0.65 }, scale = { 0.12, 0.12, 0.12 }, width = 900, height = 350, @@ -336,7 +336,7 @@ function makeDrawAreaButton() click_function = "discardOrMove", tooltip = "Right-click to move to threat area", function_owner = self, - position = { -1.365, 0.1, -0.94 }, + position = { -1.365, 0.1, -0.94 + 0.65}, scale = { 0.12, 0.12, 0.12 }, width = 1190, height = 350,