File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed
runner/src/main/java/com/codingame/gameengine/runner Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
9
9
- ` Invalid negative values for colours no longer crash the game `
10
10
- ` Fixed missing line breaks in the Game Summary console `
11
11
- ` Frames now start at 0 in local test page `
12
+ - ` Better error reporting on player agent crash `
13
+ - ` Multiple commands can now be launched with CommandLinePlayerAgent `
12
14
- ` Games now require less RAM in the CodinGame IDE `
13
15
14
16
## 3.4.8
Original file line number Diff line number Diff line change @@ -95,8 +95,6 @@ private void bootstrapPlayers() {
95
95
throw new RuntimeException ("Bootstrap of all players failed to bootsrap" );
96
96
}
97
97
98
- bootstrapPlayersWait ();
99
-
100
98
for (Agent agent : players ) {
101
99
BlockingQueue <String > queue = new ArrayBlockingQueue <>(1024 );
102
100
AsynchronousWriter asyncWriter = new AsynchronousWriter (queue , agent .getInputStream ());
@@ -106,14 +104,6 @@ private void bootstrapPlayers() {
106
104
}
107
105
}
108
106
109
- private void bootstrapPlayersWait () {
110
- try {
111
- // Arbitrary time to wait for bootstrap
112
- Thread .sleep (300 );
113
- } catch (InterruptedException e ) {
114
- }
115
- }
116
-
117
107
private void runAgents () {
118
108
referee .execute ();
119
109
You can’t perform that action at this time.
0 commit comments