Performs some necessary work required for the edit command

Adds an implementation for the edit tab completer
Adds an enum representing a paid sign property
Adds an enum representing a paid sign condition property
Adds aliases to all commands
This commit is contained in:
2022-03-14 16:20:42 +01:00
parent 3b5218cb98
commit 9c6921b4cd
8 changed files with 415 additions and 87 deletions

View File

@ -0,0 +1,16 @@
package net.knarcraft.paidsigns.command;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.jetbrains.annotations.NotNull;
public class EditCommand extends TokenizedCommand {
@Override
public boolean onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label,
@NotNull String[] args) {
return false;
}
}