We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea79742 commit 5c9cf82Copy full SHA for 5c9cf82
Common Utilities/EventHandlers/PlayerHandlers.cs
@@ -23,6 +23,9 @@ public class PlayerHandlers
23
24
public void OnPlayerVerified(VerifiedEventArgs ev)
25
{
26
+ if (ev.Player is null)
27
+ return;
28
+
29
string message = FormatJoinMessage(ev.Player);
30
31
if (!string.IsNullOrEmpty(message))
Common Utilities/Plugin.cs
@@ -41,7 +41,7 @@ public class Plugin : Plugin<Config>
41
42
public override string Author { get; } = "ExMod-Team";
43
44
- public override Version Version { get; } = new(8, 0, 1);
+ public override Version Version { get; } = new(8, 0, 2);
45
46
public override Version RequiredExiledVersion { get; } = new(9, 1, 1);
47
0 commit comments