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();
}
}

View File

@@ -1,6 +1,6 @@
{
"Group": "dev.hytalemodding",
"Name": "YourPluginName",
"Name": "ExamplePlugin",
"Version": "1.0.0",
"Description": "Description of your plugin",
"Authors": [
@@ -14,5 +14,6 @@
"ServerVersion": "*",
"Dependencies": {},
"OptionalDependencies": {},
"DisabledByDefault": false
"DisabledByDefault": false,
"Main": "dev.hytalemodding.ExamplePlugin"
}