diff --git a/patches/server/Paper-Plugins.patch b/patches/server/Paper-Plugins.patch index 9d50e6a278..0f058ae011 100644 --- a/patches/server/Paper-Plugins.patch +++ b/patches/server/Paper-Plugins.patch @@ -5518,6 +5518,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + 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..00000000000000000000000000000000 + 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); + }