mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 18:56:23 +02:00
29 lines
1.0 KiB
Java
29 lines
1.0 KiB
Java
package com.gmail.nossr50.commands.admin;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class CompatibilityCommand implements CommandExecutor {
|
|
|
|
/**
|
|
* Executes the given command, returning its success.
|
|
* <br>
|
|
* If false is returned, then the "usage" plugin.yml entry for this command
|
|
* (if defined) will be sent to the player.
|
|
*
|
|
* @param commandSender Source of the command
|
|
* @param command Command which was executed
|
|
* @param s Alias of the command which was used
|
|
* @param strings Passed command arguments
|
|
* @return true if a valid command, otherwise false
|
|
*/
|
|
@Override
|
|
public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s, @NotNull String[] strings) {
|
|
mcMMO.getCompatibilityManager().reportCompatibilityStatus(commandSender);
|
|
return true;
|
|
}
|
|
}
|