mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[CLB] Fix Undercity Dungeon +1/+1 counter amount and Stash next room bugs. Closes #9123.
This commit is contained in:
parent
e7205391ba
commit
5aae6bf735
1 changed files with 2 additions and 1 deletions
|
@ -93,6 +93,7 @@ public class UndercityDungeon extends Dungeon {
|
|||
trap.addNextRoom(archives);
|
||||
arena.addNextRoom(archives);
|
||||
arena.addNextRoom(catacombs);
|
||||
stash.addNextRoom(catacombs);
|
||||
archives.addNextRoom(throneOfTheDeadThree);
|
||||
catacombs.addNextRoom(throneOfTheDeadThree);
|
||||
|
||||
|
@ -157,7 +158,7 @@ class ThroneOfTheDeadThreeEffect extends OneShotEffect {
|
|||
if (card != null) {
|
||||
player.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
Permanent permanent = game.getPermanent(card.getId());
|
||||
permanent.addCounters(CounterType.P1P1.createInstance(), source, game);
|
||||
permanent.addCounters(CounterType.P1P1.createInstance(3), source, game);
|
||||
game.addEffect(new GainAbilityTargetEffect(HexproofAbility.getInstance())
|
||||
.setTargetPointer(new FixedTarget(permanent, game)), source);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue