mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Memory Jar and Magus of the Jar not returning exiled cards to hand
This commit is contained in:
parent
e03dad7a8c
commit
07871637b6
2 changed files with 2 additions and 0 deletions
|
@ -116,6 +116,7 @@ class MagusoftheJarDelayedEffect extends OneShotEffect {
|
|||
|
||||
private MagusoftheJarDelayedEffect(final MagusoftheJarDelayedEffect effect) {
|
||||
super(effect);
|
||||
this.cards.addAll(effect.cards);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -115,6 +115,7 @@ class MemoryJarDelayedEffect extends OneShotEffect {
|
|||
|
||||
private MemoryJarDelayedEffect(final MemoryJarDelayedEffect effect) {
|
||||
super(effect);
|
||||
this.cards.addAll(effect.cards);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue