Skip to content

Commit

Permalink
Fix an NPE with user action attachments introduced by recent refactor…
Browse files Browse the repository at this point in the history
…ing. (#10503)
  • Loading branch information
asvitkine authored May 25, 2022
1 parent 0333b85 commit aaaaf1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public static void fireTriggers(
public Set<GamePlayer> getOtherPlayers() {
final Set<GamePlayer> otherPlayers = new HashSet<>();
otherPlayers.add((GamePlayer) this.getAttachedTo());
otherPlayers.addAll(actionAccept);
otherPlayers.addAll(getActionAccept());
return otherPlayers;
}

Expand Down

0 comments on commit aaaaf1d

Please sign in to comment.