From 6d6cfe6df64344f70b5db800f830ac914a21e160 Mon Sep 17 00:00:00 2001 From: arcanedisgea <39720490+ArcaneDisgea@users.noreply.github.com> Date: Tue, 7 Dec 2021 15:39:50 -0500 Subject: [PATCH] fix scholar levels --- create-card.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-card.js b/create-card.js index 69e30d8..d93baae 100644 --- a/create-card.js +++ b/create-card.js @@ -539,7 +539,7 @@ class CardCreator { rowTextX += jobsRowTextSpacer; ctx.fillText(ClassJobs[4].Level, rowTextX, jobsRowText1Y); // Conjurer/Whitemage rowTextX += jobsRowTextSize; - ctx.fillText(ClassJobs[5].Level >= 30 ? ClassJobs[9].Level : '0', rowTextX, jobsRowText1Y); // Scholar + ctx.fillText(ClassJobs[5].Level >= 30 ? ClassJobs[5].Level : '0', rowTextX, jobsRowText1Y); // Scholar rowTextX += jobsRowTextSize; ctx.fillText(ClassJobs[6].Level, rowTextX, jobsRowText1Y); // Astrologian rowTextX += jobsRowTextSize;