Skip to content

Commit f30117c

Browse files
committed
typo(sdk): better formulation for the GAME_DURATION_SOFT_QUOTA
1 parent dbf28eb commit f30117c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/core/src/main/java/com/codingame/gameengine/core/GameManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ private void addTurnTime() {
503503
if (this.totalTurnTime > GAME_DURATION_HARD_QUOTA) {
504504
throw new RuntimeException("Total game duration too long");
505505
} else if (this.totalTurnTime > GAME_DURATION_SOFT_QUOTA) {
506-
log.warn("Warning: please keep the total duration of your total game turns under 25s");
506+
log.warn("Warning: too many turns and/or too much time allocated to players per turn");
507507
}
508508
}
509509

0 commit comments

Comments
 (0)