fix: add Main to manifest

Signed-off-by: ItsNeil17 <neil@willofsteel.me>
This commit is contained in:
ItsNeil17
2026-01-13 23:26:45 +05:30
parent d39ec0203e
commit b76cce7f98
7 changed files with 73 additions and 25 deletions

View File

@@ -19,14 +19,4 @@ public class ExamplePlugin extends JavaPlugin {
this.getCommandRegistry().registerCommand(new ExampleCommand("example", "An example command"));
this.getEventRegistry().registerGlobal(PlayerReadyEvent.class, ExampleEvent::onPlayerReady);
}
@Override
protected void start() {
super.start();
}
@Override
protected void shutdown() {
super.shutdown();
}
}