Skip to content

Commit

Permalink
Incorrect GR flow in PropertyIsTheft
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeldo committed Nov 22, 2023
1 parent 4ee81cf commit 3c3870e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/game/cards/12-2T2D/PropertyIsTheft.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class PropertyIsTheft extends OutfitCard {
this.game.addMessage('{0} pays 1 GR to bank due to {1}', opponent, this);
} else {
this.game.transferGhostRock({
from: context.player,
to: opponent,
from: opponent,
to: context.player,
amount: 1
});
this.game.addMessage('{0} pays 1 GR to {1} due to {2}', opponent, context.player, this);
Expand Down

0 comments on commit 3c3870e

Please sign in to comment.