diff --git a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/timing/GameStats.java b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/timing/GameStats.java index 0d63d70af..eb0165e17 100644 --- a/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/timing/GameStats.java +++ b/gemp-lotr/gemp-lotr-logic/src/main/java/com/gempukku/lotro/logic/timing/GameStats.java @@ -45,13 +45,13 @@ public class GameStats { if (game.getGameState().getCurrentPhase() == Phase.ARCHERY) { int newFellowshipArcheryTotal = RuleUtils.calculateFellowshipArcheryTotal(game); - if (newFellowshipArcheryTotal != _fellowshipArchery) { + if (_fellowshipArchery == null || newFellowshipArcheryTotal != _fellowshipArchery) { changed = true; _fellowshipArchery = newFellowshipArcheryTotal; } int newShadowArcheryTotal = RuleUtils.calculateShadowArcheryTotal(game); - if (newShadowArcheryTotal != _shadowArchery) { + if (_shadowArchery == null || newShadowArcheryTotal != _shadowArchery) { changed = true; _shadowArchery = newShadowArcheryTotal; }