From bf96ca0b02edddd1deb7b4e0c68c11e585ebd31e Mon Sep 17 00:00:00 2001 From: EmeraldBlock <69981203+EmeraldBlock@users.noreply.github.com> Date: Mon, 28 Sep 2020 11:06:44 -0500 Subject: [PATCH] Update hub.js --- src/js/game/systems/hub.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/js/game/systems/hub.js b/src/js/game/systems/hub.js index a2ae1aff..2c30dd0a 100644 --- a/src/js/game/systems/hub.js +++ b/src/js/game/systems/hub.js @@ -89,10 +89,8 @@ export class HubSystem extends GameSystemWithFilter { const delivered = this.root.hubGoals.getCurrentGoalDelivered(); const deliveredText = "" + formatBigNumber(delivered); - if (delivered > 9999) { + if (delivered > 999) { context.font = "bold 16px GameFont"; - } else if (delivered > 999) { - context.font = "bold 20px GameFont"; } else { context.font = "bold 25px GameFont"; }