Skip to content

Commit

Permalink
Fix missing death messages (#936)
Browse files Browse the repository at this point in the history
Signed-off-by: applenick <[email protected]>
  • Loading branch information
applenick authored Nov 14, 2021
1 parent 2c71c6c commit f069e93
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public final boolean isKiller(MatchPlayer player) {
* @return Whether the {@link MatchPlayer} is involved.
*/
public final boolean isInvolved(MatchPlayer player) {
if (player == null) return false;
return isVictim(player) || isKiller(player);
}

Expand Down

0 comments on commit f069e93

Please sign in to comment.