Merge pull request #52 from PhallenCassidy/Minor-Fix

Small change
This commit is contained in:
Marcin Sciesinski
2019-07-17 03:47:31 -07:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ public class Card15_082 extends AbstractMinion {
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();
modifiers.add(
new StrengthModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), 2));
new StrengthModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), 3));
modifiers.add(
new KeywordModifier(self, self, new SpotCondition(Filters.siteControlled(self.getOwner())), Keyword.FIERCE, 1));
return modifiers;