From 5f251b45933c2db3a0cee2a8c0812bc0603341ec Mon Sep 17 00:00:00 2001 From: Fierelier Date: Thu, 1 Apr 2021 12:09:54 +0200 Subject: [PATCH] Show library versions in summary --- offline-minecraft-launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/offline-minecraft-launcher.py b/offline-minecraft-launcher.py index 8feae21..466fa1a 100644 --- a/offline-minecraft-launcher.py +++ b/offline-minecraft-launcher.py @@ -303,7 +303,7 @@ def main(): if library["type"] == "client": print("Client: " +library["filePathOS"]) else: - print("- " +library["path"]) + print("- " +library["path"]+ ":" +library["version"]) else: print("Lib not found: " +library["path"])