*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:
PhallenCassidy
2016-12-10 23:17:38 -05:00
committed by GitHub
parent edb09087cf
commit 0b5f012b8b

View File

@@ -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;