grammar fix: freezed -> frozen

This commit is contained in:
Aidan Coward 2020-07-05 18:23:16 -04:00
parent 57ffb4b73b
commit 857c072ac1
2 changed files with 3 additions and 3 deletions

View file

@ -137,8 +137,8 @@ public class HumanPlayer extends PlayerImpl {
while (!responseOpenedForAnswer && canRespond()) {
numTimesWaiting++;
if (numTimesWaiting >= 300) {
// game freezed -- need to report about error and continue to execute
String s = "Game freezed in waitResponseOpen for user " + getName() + " (connection problem)";
// game frozen -- need to report about error and continue to execute
String s = "Game frozen in waitResponseOpen for user " + getName() + " (connection problem)";
logger.warn(s);
break;
}

View file

@ -215,7 +215,7 @@ public class LoadCallbackClient implements CallbackClient {
}
if (controlCount > 5) {
log.warn(getLogStartInfo() + "Game seems freezed. Sending boolean message to server.");
log.warn(getLogStartInfo() + "Game seems frozen. Sending boolean message to server.");
session.sendPlayerBoolean(gameId, false);
controlCount = 0;
}