Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
noskill committed Nov 5, 2024
1 parent 3765108 commit 67afcfa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.6
0.1.7
Original file line number Diff line number Diff line change
Expand Up @@ -1276,10 +1276,8 @@ public void run() {
}
});
// Skip all the map loading stuff and go straight to waiting for the server:
episodeHasCompleted(ClientState.WAITING_FOR_SERVER_READY);
} else {
throw new RuntimeException("unexpected condition");
}
episodeHasCompleted(ClientState.WAITING_FOR_SERVER_READY);
} else { // not needNewWorld and no world: error
// Mission has requested no new world, but there is no current world to play in - this is an error:
episodeHasCompletedWithErrors(ClientState.ERROR_NO_WORLD, "We have no world to play in - check that your ServerHandlers section contains a world generator");
Expand Down Expand Up @@ -1442,6 +1440,11 @@ protected void execute() throws Exception {
ConnectScreen.connect(parentScreen, MinecraftClient.getInstance(), srv, srvInfo, true, null);
this.sendToRemote = true;
}


if (isConnectedToRemote && currentMissionInit().getClientRole() == 0) {
this.sendToRemote = true;
}
/*
if (agents.size() > 1 && currentMissionInit().getClientRole() != 0)
{
Expand Down

0 comments on commit 67afcfa

Please sign in to comment.