diff --git a/.idea/copilot.data.migration.ask2agent.xml b/.idea/copilot.data.migration.ask2agent.xml
new file mode 100644
index 0000000..1f2ea11
--- /dev/null
+++ b/.idea/copilot.data.migration.ask2agent.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 0000000..aa00ffa
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index b2eea27..0c04b52 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,7 +1,14 @@
-
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 5a386dc..127a22c 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,7 +4,12 @@
-
+
+
+
+
+
+
@@ -33,8 +38,11 @@
{
"keyToString": {
+ "Maven.ExamplePlugin [package].executor": "Run",
+ "Maven.ExamplePlugin.executor": "Run",
"ModuleVcsDetector.initialDetectionPerformed": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
+ "RunOnceActivity.TerminalTabsStorage.copyFrom.TerminalArrangementManager.252": "true",
"RunOnceActivity.git.unshallow": "true",
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
"git-widget-placeholder": "main",
@@ -59,6 +67,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -77,23 +115,16 @@
+
+
+
+
-
-
-
-
- file://$PROJECT_DIR$/src/main/java/dev/hytalemodding/ExamplePlugin.java
- 13
-
-
-
-
-
diff --git a/src/main/java/dev/hytalemodding/ExamplePlugin.java b/src/main/java/dev/hytalemodding/ExamplePlugin.java
index 4a5c988..27de75b 100644
--- a/src/main/java/dev/hytalemodding/ExamplePlugin.java
+++ b/src/main/java/dev/hytalemodding/ExamplePlugin.java
@@ -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();
- }
}
\ No newline at end of file
diff --git a/src/main/resources/manifest.json b/src/main/resources/manifest.json
index 4819d2f..fbf210e 100644
--- a/src/main/resources/manifest.json
+++ b/src/main/resources/manifest.json
@@ -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"
}
\ No newline at end of file