1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-13 09:11:06 -09:00

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
Mage.Server.Plugins/Mage.Player.Human/src/mage/player/human
Mage.Tests/src/test/java/org/mage/test/load

View file

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

View file

@ -215,7 +215,7 @@ public class LoadCallbackClient implements CallbackClient {
} }
if (controlCount > 5) { 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); session.sendPlayerBoolean(gameId, false);
controlCount = 0; controlCount = 0;
} }