Makes some changes in preparation for some commands that need to be added

Prepares the new command layout, changes the .add permission to .manage and adds 4 empty command classes
This commit is contained in:
2022-02-18 23:16:47 +01:00
parent eaa4f929ca
commit 6f35da03e7
6 changed files with 88 additions and 9 deletions

View File

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