Add command-related utility functions

This commit is contained in:
Gabriel Tofvesson 2021-05-04 04:15:19 +02:00
parent 1ce8ed4d82
commit 17bd4950d8

View File

@ -0,0 +1,19 @@
package dev.w1zzrd.invtweaks.command;
import net.md_5.bungee.api.ChatColor;
import net.md_5.bungee.api.chat.TextComponent;
import org.bukkit.command.CommandSender;
public final class CommandUtils {
private CommandUtils() { throw new UnsupportedOperationException("Functional class"); }
public static boolean assertTrue(final boolean condition, final String message, final CommandSender sender) {
if (!condition) {
final TextComponent errorMessage = new TextComponent(message);
errorMessage.setColor(ChatColor.DARK_RED);
sender.spigot().sendMessage(errorMessage);
}
return !condition;
}
}