From 989873247ae509088920b792f1e4e580471b2348 Mon Sep 17 00:00:00 2001 From: Teriuihi Date: Fri, 18 Oct 2024 19:40:42 +0200 Subject: [PATCH] Fix main class path in plugin.yml Corrected the main class path from com.alttd.event.Main to com.alttd.custommobs.Main in the plugin.yml file. This change ensures the plugin loads the correct main class when initialized. --- src/main/resources/plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 758dbd0..fafbcd6 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: CustomMobs version: '1.0.0' -main: com.alttd.event.Main +main: com.alttd.custommobs.Main description: A plugin to spawn custom mobs author: Stijn website: https://alttd.com