* Mind's Desire - Fixed a problem with playing lands.

This commit is contained in:
LevelX2 2017-07-22 12:09:28 +02:00
parent fb19f257a7
commit c6cd713f0d
3 changed files with 22 additions and 20 deletions

View file

@ -920,10 +920,10 @@ public class SessionImpl implements Session {
public boolean leaveChat(UUID chatId) {
// lock.readLock().lock();
try {
if (isConnected()) {
if (isConnected() && chatId != null) {
server.leaveChat(chatId, sessionId);
return true;
}
return true;
} catch (MageException ex) {
handleMageException(ex);
} catch (Throwable t) {