Skip to content

Instantly share code, notes, and snippets.

@sambeevors
Created January 2, 2020 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sambeevors/1f7d7434fbc6206d3f9cdf9f4a9202f3 to your computer and use it in GitHub Desktop.
Save sambeevors/1f7d7434fbc6206d3f9cdf9f4a9202f3 to your computer and use it in GitHub Desktop.
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.plugin.java.JavaPlugin;
public class Main extends JavaPlugin {
@Override
public void onEnable() {
}
@Override
public void onDisable() {
}
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment