From e11ab905d30fd2a523b570d12a63140c52485783 Mon Sep 17 00:00:00 2001 From: HakkoDevelopment <67168651+Hakkodevelopment@users.noreply.github.com> Date: Thu, 11 Aug 2022 20:16:58 -0600 Subject: [PATCH] Fixed AOP Export Issues --- ND_CharacterSelection/source/ui/script.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ND_CharacterSelection/source/ui/script.js b/ND_CharacterSelection/source/ui/script.js index bd7250a..dfc0de3 100644 --- a/ND_CharacterSelection/source/ui/script.js +++ b/ND_CharacterSelection/source/ui/script.js @@ -100,7 +100,7 @@ $(function() { } if (item.type === "aop") { - $("#aop").text(item.aop); + $("#aop").text(`AOP: ${item.aop}`); } if (item.type === "refresh") { @@ -225,4 +225,4 @@ $(function() { $.post(`https://${GetParentResourceName()}/exitGame`); return; }); -}); \ No newline at end of file +});