- Fixed transferring from Support animation.
This commit is contained in:
@@ -278,10 +278,9 @@ public class GameState {
|
||||
}
|
||||
|
||||
public void transferCard(PhysicalCard card, PhysicalCard transferTo) {
|
||||
if (card.getZone() != Zone.ATTACHED) {
|
||||
removeCardsFromZone(Collections.singleton(card));
|
||||
addCardToZone(card, Zone.ATTACHED);
|
||||
}
|
||||
if (card.getZone() != Zone.ATTACHED)
|
||||
((PhysicalCardImpl) card).setZone(Zone.ATTACHED);
|
||||
|
||||
((PhysicalCardImpl) card).attachTo((PhysicalCardImpl) transferTo);
|
||||
for (GameStateListener listener : getAllGameStateListeners())
|
||||
listener.cardMoved(card);
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
- Added revealing effect to all cards, for now the revealed cards will be only shown in the log, until I figure out
|
||||
something better.
|
||||
- Fixed "Trapped and Alone" and all other cards that remove keyword bonuses granted by other cards.
|
||||
- Fixed the animation for "Black Breath" and other cards transferring from Support zone.
|
||||
|
||||
<b>17 Oct. 2011</b>
|
||||
- "Coming for the Ring" is no longed considered Free People card by the game.
|
||||
|
||||
Reference in New Issue
Block a user