File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
engine/core/src/main/java/com/codingame/gameengine/core Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -540,11 +540,11 @@ public void addToGameSummary(String summary) {
540540 private void addTurnTime () {
541541 totalTurnTime += turnMaxTime ;
542542 if (totalTurnTime > GAME_DURATION_HARD_QUOTA ) {
543- throw new RuntimeException (String .format ("Total game duration too long (>%ds )" , GAME_DURATION_HARD_QUOTA ));
543+ throw new RuntimeException (String .format ("Total game duration too long (>%dms )" , GAME_DURATION_HARD_QUOTA ));
544544 } else if (totalTurnTime > GAME_DURATION_SOFT_QUOTA ) {
545545 log .warn (
546546 String .format (
547- "Warning: too many turns and/or too much time allocated to players per turn (%ds/%ds )" ,
547+ "Warning: too many turns and/or too much time allocated to players per turn (%dms/%dms )" ,
548548 totalTurnTime , GAME_DURATION_HARD_QUOTA
549549 )
550550 );
You can’t perform that action at this time.
0 commit comments