Skip to content

Commit 8626816

Browse files
Merge branch 'fix-doc' into 'master'
doc(SDK): correct default max game turns See merge request codingame/game-engine!213
2 parents 38bf6c1 + 7976288 commit 8626816

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playground/core-concepts/core-3-game-manager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ If a player times out (send an invalid value, takes too long to execute ...) you
147147

148148
### Maximum number of turns
149149

150-
You can set the maximum number of turns before the game ends (even if there are still active players). If you don't set this paramter, the game will end within **400** turns.
150+
You can set the maximum number of turns before the game ends (even if there are still active players). If you don't set this paramter, the game will end within **200** turns.
151151

152152
```java
153-
gameManager.setMaxTurns(200);
153+
gameManager.setMaxTurns(250);
154154
```
155155

156156
>This parameter is an important performance setting. See the [Guidelines](playground/misc/misc-1-guidelines.md) for more details.

0 commit comments

Comments
 (0)