Skip to content

Commit

Permalink
Bye bye
Browse files Browse the repository at this point in the history
  • Loading branch information
The Judge committed Apr 13, 2024
1 parent c3c9f2d commit fd9602f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/pojlib/instance/InstanceHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ public static MinecraftInstances load(String gameDir) {
} catch (Exception e) {
instances = new MinecraftInstances();
}
assert instances != null;
if(instances == null) {
instances = new MinecraftInstances();
}

return instances;
}
Expand Down

0 comments on commit fd9602f

Please sign in to comment.