Skip to content

Commit

Permalink
fixed onplayerverified nre
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikihero committed Jan 1, 2025
1 parent ea79742 commit 5c9cf82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Common Utilities/EventHandlers/PlayerHandlers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public class PlayerHandlers

public void OnPlayerVerified(VerifiedEventArgs ev)
{
if (ev.Player is null)
return;

string message = FormatJoinMessage(ev.Player);

if (!string.IsNullOrEmpty(message))
Expand Down
2 changes: 1 addition & 1 deletion Common Utilities/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Plugin : Plugin<Config>

public override string Author { get; } = "ExMod-Team";

public override Version Version { get; } = new(8, 0, 1);
public override Version Version { get; } = new(8, 0, 2);

public override Version RequiredExiledVersion { get; } = new(9, 1, 1);

Expand Down

0 comments on commit 5c9cf82

Please sign in to comment.