forked from External/mage
GUI: hand zone - fixed wrong dragging effect while click on card, improved dragging animation, fixed wrong click if user return card to the original place
This commit is contained in:
parent
cd07bbfdf2
commit
e534497834
6 changed files with 39 additions and 34 deletions
|
|
@ -65,7 +65,7 @@ public class ThreadExecutorImpl implements ThreadExecutor {
|
|||
|
||||
// catch errors in CALL threads (from client commands)
|
||||
t = ThreadUtils.findRealException(r, t);
|
||||
if (t != null) {
|
||||
if (t != null && !(t instanceof CancellationException)) {
|
||||
logger.error("Catch unhandled error in CALL thread: " + t.getMessage(), t);
|
||||
}
|
||||
}
|
||||
|
|
@ -84,7 +84,7 @@ public class ThreadExecutorImpl implements ThreadExecutor {
|
|||
|
||||
// catch errors in GAME threads (from game processing)
|
||||
t = ThreadUtils.findRealException(r, t);
|
||||
if (t != null) {
|
||||
if (t != null && !(t instanceof CancellationException)) {
|
||||
// it's impossible to brake game thread in normal use case, so each bad use case must be researched
|
||||
logger.error("Catch unhandled error in GAME thread: " + t.getMessage(), t);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue