diff --git a/scripts/module.js b/scripts/module.js index e2ab98e..6bb4b54 100644 --- a/scripts/module.js +++ b/scripts/module.js @@ -106,7 +106,7 @@ export function extractDamageInfoCombined(rolls) { } export function getFontScale(scaleType, dmg, tok) { - let scale = game.settings.get("pf2e-rpg-numbers", 'max-font-scale'); + let scale = game.settings.get("pf2e-rpg-numbers", 'max-font-scale') - 1; if (scaleType === "percentMaxHealth") { scale *= (dmg / (tok.actor.system.attributes.hp.max + tok.actor.system.attributes.hp.temp)); } @@ -116,5 +116,5 @@ export function getFontScale(scaleType, dmg, tok) { if (scaleType === "none") { return 1; } - return scale; + return scale + 1; } \ No newline at end of file