Короче ошибка вот:
java.lang.NullPointerException: Cannot invoke "org.bukkit.command.PluginCommand.setExecutor(org.bukkit.command.CommandExecutor)"
because the return value of "org.sssumed.mc.claymineeconomy.ClayMineEconomy.getCommand(String)" is null
это часть ошибки там дальше там важного нету ничего.
paper-plugin.yml:
commands:
pay:
код:
this.getCommand("pay").setExecutor((CommandExecutor)new Commands());
код2:
public class Commands implements CommandExecutor {
@Override
public boolean onCommand(@NotNull CommandSender commandSender, @NotNull Command command, @NotNull String s, @NotNull String[] strings) {
commandSender.sendMessage("qwa");
return true;
}
}
this.getCommand("pay")у вас возвращаетnull-- в файле конфигурации у вас командаpayпустая. – Nowhere Man Jul 18 '23 at 15:30