Skip to content
This repository was archived by the owner on Jun 16, 2019. It is now read-only.

Commit f998ff5

Browse files
committed
Fix crash screen popup time
1 parent abea96f commit f998ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/grunt/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ private void onLoggedIn()
117117
int code = launchGame();
118118
System.out.println("Process exited with error code " + code);
119119

120-
if(code == 0)
120+
if(code != 0)
121121
{
122122
ProgressGameCrash c = new ProgressGameCrash();
123123
c.setVisible(true);

0 commit comments

Comments
 (0)