Skip to content

Commit

Permalink
Change from Command to SimpleCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
benfoster04 authored Jul 21, 2021
1 parent bed6b34 commit 3d2485c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.buycraft.plugin.velocity;

import com.velocitypowered.api.command.Command;
import com.velocitypowered.api.command.SimpleCommand;
import com.velocitypowered.api.command.CommandSource;
import net.buycraft.plugin.velocity.command.Subcommand;
import net.kyori.adventure.text.Component;
Expand All @@ -11,7 +11,7 @@
import java.util.LinkedHashMap;
import java.util.Map;

public class BuycraftCommand implements Command {
public class BuycraftCommand implements SimpleCommand {
private final Map<String, Subcommand> subcommandMap = new LinkedHashMap<>();
private final BuycraftPlugin plugin;

Expand Down

0 comments on commit 3d2485c

Please sign in to comment.