Skip to content

Commit 7706adc

Browse files
committed
Add UUID printing to game start
1 parent 193c235 commit 7706adc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/main/java/pojlib/util/JREUtils.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,12 @@ public static int launchJavaVM(final Activity activity, final List<String> JVMAr
251251
userArgs.addAll(JVMArgs);
252252
System.out.println(JVMArgs);
253253

254+
if (API.currentAcc != null) {
255+
System.out.println("UUID: " + API.currentAcc.uuid);
256+
} else {
257+
System.out.println("UUID is null! Make sure to log in!");
258+
}
259+
254260
chdir(instance.gameDir);
255261
userArgs.add(0,"java"); //argv[0] is the program name according to C standard.
256262

0 commit comments

Comments
 (0)