- Cards that prevent adding burdens, now should do so correctly.

This commit is contained in:
marcins78
2013-03-19 12:17:01 +00:00
parent 4f97e033a9
commit cb1cb8adb6
2 changed files with 2 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
<b>19 Mar. 2013</b>
- Applied revision 1 changes to set 20.
- "Bolstered Spirits" is now a Spell (per card text).
- Cards that prevent adding burdens, now should do so correctly.
<b>15 Mar. 2013</b>
- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.

View File

@@ -839,7 +839,7 @@ public class ModifiersLogic implements ModifiersEnvironment, ModifiersQuerying {
@Override
public boolean canAddBurden(GameState gameState, String performingPlayer, PhysicalCard source) {
for (Modifier modifier : getModifiersAffectingCard(gameState, ModifierEffect.BURDEN_MODIFIER, source)) {
for (Modifier modifier : getModifiers(gameState, ModifierEffect.BURDEN_MODIFIER)) {
if (!modifier.canAddBurden(gameState, this, performingPlayer, source))
return false;
}