Skip to content

Commit

Permalink
Fix if statement in WitnessSuspect
Browse files Browse the repository at this point in the history
  • Loading branch information
wallabra committed Dec 7, 2023
1 parent d270a4f commit 0d1bc5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/MushMatchMutator.uc
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function bool WitnessSuspect(Pawn Victim, Pawn InstigatedBy, Pawn Witness, int D
local MushMatchPRL WitPRL, VictPRL, InstigPRL;
local float SuspectOverlookChance;

if (!BasicWitnessSuspect(Victim, InstigatedBy, Witness, WitPRL, VictPRL, InstigPRL) {
if (!BasicWitnessSuspect(Victim, InstigatedBy, Witness, WitPRL, VictPRL, InstigPRL)) {
return false;
}

Expand Down

0 comments on commit 0d1bc5a

Please sign in to comment.