From 581f3be7916faf503eb4bb6644b93ff52814031c Mon Sep 17 00:00:00 2001 From: Lixfel Date: Fri, 28 Jun 2024 10:15:05 +0200 Subject: [PATCH] Fix Softreload Signed-off-by: Lixfel --- Persistent/src/de/steamwar/persistent/Persistent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Persistent/src/de/steamwar/persistent/Persistent.java b/Persistent/src/de/steamwar/persistent/Persistent.java index a07b197..bc5fd1e 100644 --- a/Persistent/src/de/steamwar/persistent/Persistent.java +++ b/Persistent/src/de/steamwar/persistent/Persistent.java @@ -142,7 +142,7 @@ public class Persistent { private PluginContainer prepareLoad() throws Exception { Path plugins = directory.getParent(); JavaPluginLoader loader = new JavaPluginLoader(proxy, plugins); - PluginDescription description = loader.createPluginFromCandidate(loader.loadCandidate(plugins.resolve("velocitycore.jar"))); + PluginDescription description = loader.createPluginFromCandidate(loader.loadCandidate(plugins.resolve("VelocityCore.jar"))); PluginContainer container = new VelocityPluginContainer(description); AbstractModule commonModule = new AbstractModule() {