Skip to content

Commit 35136cb

Browse files
committed
stage2/ml9: fix logic error in ForkedRestartUI
1 parent 61f3611 commit 35136cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stage2/modlauncher9/src/main/java/gg/essential/loader/stage2/components/ForkedRestartUI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void show() {
3636
}
3737

3838
public Boolean waitForClose() {
39-
if (this.jvm != null) return null;
39+
if (this.jvm == null) return null;
4040

4141
try {
4242
int verdict = this.jvm.process.getInputStream().read();

0 commit comments

Comments
 (0)