Cabbage started a thread called Why do i get this.
error: cannot find symbol
commands.registrar().register(buildCommand);
^
symbol: variable buildCommand
Code: package com.cabbage.testplugin;
import io.papermc.paper.plugin.lifecycle.event.types.LifecycleEvents;
import org.bukkit.plugin.java.JavaPlugin;
public final class Testplugin extends JavaPlugin {
@Override
public void onEnable() {
this.getLifecycleManager().registerEventHandler(LifecycleEvents.COMMANDS, commands -> {...
Plugin Development
·