Lunar Convocation - fixed game error on usage (miss watcher);

This commit is contained in:
Oleg Agafonov 2024-09-09 06:43:24 +04:00
parent aa72c3a63d
commit 22c207bcd8
3 changed files with 4 additions and 3 deletions

View file

@ -47,7 +47,7 @@ public class Watchers extends HashMap<String, Watcher> {
if (containsKey(key)) {
return super.get(key);
}
// can't add game exeption here because it's an easy way to ruin any game with bugged card
// can't add game exception here because it's an easy way to ruin any game with bugged card
logger.error(key + " not found in watchers", new Throwable());
return null;
}