From b2aea18b19c04b1122d70d959e3e91eef15ef002 Mon Sep 17 00:00:00 2001 From: Bjarne Koll Date: Fri, 23 Feb 2024 18:54:44 +0100 Subject: [PATCH] Fix corrupted plugin.yml breaking plugin loading (#10279) Fix corrupted plugin.yml file in one plugin not loading any plugins by the server. Co-authored-by: Aleksander Jagiello --- patches/server/Paper-Plugins.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/server/Paper-Plugins.patch b/patches/server/Paper-Plugins.patch index 01ecbb57c..ee335fbcc 100644 --- a/patches/server/Paper-Plugins.patch +++ b/patches/server/Paper-Plugins.patch @@ -5519,7 +5519,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + files.add(FILE_PROVIDER_SOURCE.prepareContext(path)); + } catch (IllegalArgumentException ignored) { + // Ignore illegal argument exceptions from jar checking -+ } catch (IOException e) { ++ } catch (final Exception e) { + LOGGER.error("Error preparing plugin context: " + e.getMessage(), e); + } + });