File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
engine/core/src/main/java/com/codingame/gameengine/core Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ protected void execute(T player, int nbrOutputLines) {
190
190
if (nbrOutputLines > 0 ) {
191
191
addTurnTime ();
192
192
}
193
- dumpNextPlayerInfos (player .getIndex (), player . getExpectedOutputLines () , player .hasNeverBeenExecuted () ? firstTurnMaxTime : turnMaxTime );
193
+ dumpNextPlayerInfos (player .getIndex (), nbrOutputLines , player .hasNeverBeenExecuted () ? firstTurnMaxTime : turnMaxTime );
194
194
195
195
// READ PLAYER OUTPUTS
196
196
iCmd = InputCommand .parse (s .nextLine ());
Original file line number Diff line number Diff line change @@ -11,19 +11,28 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
11
11
- Better handling of errors from initializing modules.
12
12
- Unused ` title ` property no longer mandatory in ` config.ini ` .
13
13
- ` setFrameDuration() ` now throws an exception on non-positive values.
14
+ - We no longer wait the full player timeout time when creating a frame when no players have been executed.
14
15
15
16
## 3.3.1
16
17
17
18
### 🐞 Bug fix
18
19
19
20
- ` setFrameDuration() ` regression from 3.0.0 fixed.
20
21
22
+ ### ⚠️ Known issues
23
+
24
+ - Frames created when no players have been executed will still wait the full player timeout time.
25
+
21
26
## 3.3.0
22
27
23
28
### 🎁 New feature
24
29
25
30
- The [ EndScreenModule] ( playground/extensions/extensions-4-endscreen.md ) allows you to display a custom text instead of the score.
26
31
32
+ ### ⚠️ Known issues
33
+
34
+ - Frames created when no players have been executed will still wait the full player timeout time.
35
+
27
36
## 3.2.0
28
37
29
38
### 🎁 New features
@@ -37,6 +46,7 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
37
46
38
47
### ⚠️ Known issues
39
48
49
+ - Frames created when no players have been executed will still wait the full player timeout time.
40
50
- Maven modules not available as dependencies
41
51
- ` setFrameDuration() ` does not work in the ` init() ` .
42
52
@@ -52,6 +62,7 @@ The CodinGame SDK is regularly updated and improved. This document lets you know
52
62
53
63
### ⚠️ Known issues
54
64
65
+ - Frames created when no players have been executed will still wait the full player timeout time.
55
66
- ` setFrameDuration() ` does not work in the ` init() ` .
56
67
57
68
## 3.0.0
You can’t perform that action at this time.
0 commit comments