mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
grammar fix: freezed -> frozen
This commit is contained in:
parent
57ffb4b73b
commit
857c072ac1
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue