fix: add Main to manifest
Signed-off-by: ItsNeil17 <neil@willofsteel.me>
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
Reference in New Issue
Block a user