diff --git a/src/xyz/lucasallegri/launcher/mods/ModLoader.java b/src/xyz/lucasallegri/launcher/mods/ModLoader.java index 2833adf7..68152dad 100644 --- a/src/xyz/lucasallegri/launcher/mods/ModLoader.java +++ b/src/xyz/lucasallegri/launcher/mods/ModLoader.java @@ -32,6 +32,7 @@ public static void mount() { ProgressBar.setBarValue(i + 1); try { KnightLog.log.info("Mounting mod: " + ModList.installedMods.get(i).getDisplayName()); + ProgressBar.setState("Mounting mods... (" + ModList.installedMods.get(i).getDisplayName() + ")"); FileUtil.unzip("mods/" + ModList.installedMods.get(i).getFileName(), "rsrc/"); KnightLog.log.info(ModList.installedMods.get(i).getDisplayName() + " was mounted successfully."); } catch (IOException e) {