Handle duplicates from server pings gracefully

This commit is contained in:
Andrew Steinborn
2020-06-23 23:03:19 -04:00
parent fd231c71fd
commit 780e1c8be5
2 changed files with 4 additions and 2 deletions

View File

@@ -62,7 +62,7 @@ public final class CommandExecuteEvent implements ResultedEvent<CommandResult> {
/**
* Represents the result of the {@link CommandExecuteEvent}.
*/
public static final class CommandResult implements Result {
public static final class CommandResult implements ResultedEvent.Result {
private static final CommandResult ALLOWED = new CommandResult(true, false,null);
private static final CommandResult DENIED = new CommandResult(false, false,null);