We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f48a98 commit ac6dad2Copy full SHA for ac6dad2
Code/Plugin/CommandEvents.cs
@@ -19,10 +19,11 @@ public static class CommandEvents
19
public static void Initialize()
20
{
21
UsedCommandTypes.Clear();
22
- ServerEvents.CommandExecuting += CaptureComamnd;
+ ServerEvents.CommandExecuting += CaptureCommand;
23
}
24
25
- public static void CaptureComamnd(CommandExecutingEventArgs ev)
+ // for reference this method was once called CaptureComamnd
26
+ public static void CaptureCommand(CommandExecutingEventArgs ev)
27
28
UsedCommandTypes[ev.Sender] = ev.CommandType;
29
0 commit comments