From 5513299cd39a5da95ff795fd2a68fb264e497177 Mon Sep 17 00:00:00 2001 From: AlexisinGit <136088944+AlexisinGit@users.noreply.github.com> Date: Thu, 25 Sep 2025 03:39:09 +0800 Subject: [PATCH] parseInt(value) --- static/webui/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/webui/script.js b/static/webui/script.js index fe5eb20f..9cf73616 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -3252,7 +3252,7 @@ document.querySelectorAll("#account-cheats .input-group").forEach(grp => { contentType: "application/json", data: JSON.stringify({ key: input.id, - value: value + value: parseInt(value) }) }); });