From 61461291a6e7e0ab2c0560ce8a1634aedc1f4c60 Mon Sep 17 00:00:00 2001 From: Joshua Sigona Date: Mon, 23 Aug 2021 21:19:07 +0900 Subject: [PATCH] Fix doubling up box positions --- src/TestPanel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TestPanel.js b/src/TestPanel.js index 66b897b..1829756 100644 --- a/src/TestPanel.js +++ b/src/TestPanel.js @@ -176,7 +176,7 @@ function GetSpecialWeaponName(item) { } function ConvertCoordinate(x,y) { - return (String.fromCharCode(Number(x)+'a'.charCodeAt(0)))+(y+1); + return (String.fromCharCode(Number(x)+'a'.charCodeAt(0)))+(y/2+1); } function SkillBox(p) {