server: fixed that rollback requests do nothing in some use cases (related to #11285);

This commit is contained in:
Oleg Agafonov 2024-05-20 02:11:35 +04:00
parent e0bd72521f
commit 48c1bbdc01

View file

@ -925,7 +925,7 @@ public class GameController implements GameCallback {
}
}
private synchronized void informPersonal(UUID playerId, final String message) throws MageException {
private void informPersonal(UUID playerId, final String message) throws MageException {
perform(playerId, playerId1 -> getGameSession(playerId1).informPersonal(message));
}