Skip to content

Commit aaaaf1d

Browse files
authored
Fix an NPE with user action attachments introduced by recent refactoring. (#10503)
1 parent 0333b85 commit aaaaf1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

game-app/game-core/src/main/java/games/strategy/triplea/attachments/UserActionAttachment.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public static void fireTriggers(
160160
public Set<GamePlayer> getOtherPlayers() {
161161
final Set<GamePlayer> otherPlayers = new HashSet<>();
162162
otherPlayers.add((GamePlayer) this.getAttachedTo());
163-
otherPlayers.addAll(actionAccept);
163+
otherPlayers.addAll(getActionAccept());
164164
return otherPlayers;
165165
}
166166

0 commit comments

Comments
 (0)