- Game should no longer freeze if "Ulaire Otsea, Ringwraith in Twilight" is used to transfer "Blade Tip" to Ring-bearer
who already has "Blade Tip" attached.
This commit is contained in:
@@ -45,8 +45,10 @@ public class Card3_086 extends AbstractMinion {
|
|||||||
new ChooseActiveCardEffect(self, playerId, "Choose Blade Tip", Filters.name("Blade Tip"), Zone.SUPPORT, Filters.owner(playerId)) {
|
new ChooseActiveCardEffect(self, playerId, "Choose Blade Tip", Filters.name("Blade Tip"), Zone.SUPPORT, Filters.owner(playerId)) {
|
||||||
@Override
|
@Override
|
||||||
protected void cardSelected(LotroGame game, PhysicalCard card) {
|
protected void cardSelected(LotroGame game, PhysicalCard card) {
|
||||||
action.insertEffect(
|
final PhysicalCard ringBearer = Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.ringBearer, Filters.not(Filters.hasAttached(Filters.name("Blade Tip"))));
|
||||||
new TransferPermanentEffect(card, Filters.findFirstActive(game.getGameState(), game.getModifiersQuerying(), Filters.ringBearer, Filters.not(Filters.hasAttached(Filters.name("Blade Tip"))))));
|
if (ringBearer != null)
|
||||||
|
action.insertEffect(
|
||||||
|
new TransferPermanentEffect(card, ringBearer));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return Collections.singletonList(action);
|
return Collections.singletonList(action);
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
<b>16 May 2012</b>
|
<b>16 May 2012</b>
|
||||||
- "Glamdring, Elven Blade" now lets the shadow player to choose a minion to exert.
|
- "Glamdring, Elven Blade" now lets the shadow player to choose a minion to exert.
|
||||||
- "Change of Plans" should now work correctly.
|
- "Change of Plans" should now work correctly.
|
||||||
|
- Game should no longer freeze if "Ulaire Otsea, Ringwraith in Twilight" is used to transfer "Blade Tip" to Ring-bearer
|
||||||
|
who already has "Blade Tip" attached.
|
||||||
|
|
||||||
<b>14 May 2012</b>
|
<b>14 May 2012</b>
|
||||||
- "City of Men" should now correctly discard a minion at the end of the skirmish.
|
- "City of Men" should now correctly discard a minion at the end of the skirmish.
|
||||||
|
|||||||
Reference in New Issue
Block a user