*Unrelated to Hobbit* Corrected error in LotR code
Previously, White Hand Berserker only provided 1 to the minion archery total for each additional culture spotted, rather than 2.
This commit is contained in:
@@ -43,7 +43,7 @@ public class Card17_121 extends AbstractMinion {
|
||||
if (count > 0)
|
||||
action.appendEffect(
|
||||
new AddUntilEndOfPhaseModifierEffect(
|
||||
new ArcheryTotalModifier(self, Side.SHADOW, null, count)));
|
||||
new ArcheryTotalModifier(self, Side.SHADOW, null, (count * 2))));
|
||||
return Collections.singletonList(action);
|
||||
}
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user