diff --git a/patches/server/0013-Paper-Plugins.patch b/patches/server/0013-Paper-Plugins.patch index 2f56d5a571..0bc8990f58 100644 --- a/patches/server/0013-Paper-Plugins.patch +++ b/patches/server/0013-Paper-Plugins.patch @@ -5480,10 +5480,10 @@ index 0000000000000000000000000000000000000000..49a087381307eab263f7dad43aaa2598 +} diff --git a/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java b/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java new file mode 100644 -index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4bd9da84a +index 0000000000000000000000000000000000000000..162c8ce2cb5e5863ea88c1bfbe90ab45288b50e4 --- /dev/null +++ b/src/main/java/io/papermc/paper/plugin/provider/source/DirectoryProviderSource.java -@@ -0,0 +1,65 @@ +@@ -0,0 +1,67 @@ +package io.papermc.paper.plugin.provider.source; + +import com.mojang.logging.LogUtils; @@ -5518,6 +5518,8 @@ index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4 + this.walkFiles(context, path -> { + try { + super.prepareContext(path); ++ } catch (IllegalArgumentException ignored) { ++ // Ignore illegal argument exceptions from jar checking + } catch (IOException e) { + throw new RuntimeException(e); + } @@ -5531,7 +5533,7 @@ index 0000000000000000000000000000000000000000..3185c91e859013d0a222cc5a559e30c4 + try { + super.registerProviders(entrypointHandler, path); + } catch (IllegalArgumentException ignored) { -+ // Ignore initial argument exceptions ++ // Ignore illegal argument exceptions from jar checking + } catch (Exception e) { + LOGGER.error("Error loading plugin: " + e.getMessage(), e); + }