mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Changed ReplacementEffects for TARGET and COUNTER events to ContinuousRuleModifyingEffects.
This commit is contained in:
parent
e22174b148
commit
f51e7722cc
18 changed files with 112 additions and 127 deletions
|
|
@ -61,10 +61,13 @@ public class GameWorker implements Callable {
|
|||
game.cleanUp();
|
||||
} catch (MageException ex) {
|
||||
logger.fatal("GameWorker mage error [" + game.getId() + "]" +ex, ex);
|
||||
ex.printStackTrace();
|
||||
} catch (Exception e) {
|
||||
logger.fatal("GameWorker general exception [" + game.getId() + "]" + e, e);
|
||||
logger.fatal("GameWorker general exception [" + game.getId() + "]" + e.getMessage(), e);
|
||||
e.printStackTrace();
|
||||
} catch (Error err) {
|
||||
logger.fatal("GameWorker general error [" + game.getId() + "]" +err, err);
|
||||
err.printStackTrace();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue