Skip to content

Commit

Permalink
fix(analyze): ignore possible null chat message sender
Browse files Browse the repository at this point in the history
  • Loading branch information
akiver committed Jun 11, 2022
1 parent c0639f4 commit 8707a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Services/Concrete/Analyzer/DemoAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,7 @@ protected void HandlePlayerTeam(object sender, PlayerTeamEventArgs e)

protected void HandleSayText2(object sender, SayText2EventArgs e)
{
if (sender == null)
if (e.Sender == null)
{
return;
}
Expand Down

0 comments on commit 8707a99

Please sign in to comment.