From d0c06257f142622e2baed77f19c4042c75fe408d Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Tue, 29 Jun 2021 02:09:02 -0700 Subject: [PATCH] [ci-skip] Fix description of add-plugin command line option (#6031) --- ...Add-command-line-option-to-load-extra-plugin-jars-no.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/server/Add-command-line-option-to-load-extra-plugin-jars-no.patch b/patches/server/Add-command-line-option-to-load-extra-plugin-jars-no.patch index 35ae529878..c5210c96d3 100644 --- a/patches/server/Add-command-line-option-to-load-extra-plugin-jars-no.patch +++ b/patches/server/Add-command-line-option-to-load-extra-plugin-jars-no.patch @@ -54,11 +54,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 .defaultsTo("Unknown Server") .describedAs("Name"); + -+ acceptsAll(asList("add-plugin", "add-extra-plugin-jar")) ++ acceptsAll(asList("add-plugin", "add-extra-plugin-jar"), "Specify paths to extra plugin jars to be loaded in addition to those in the plugins folder. This argument can be specified multiple times, once for each extra plugin jar path.") + .withRequiredArg() + .ofType(File.class) + .defaultsTo(new File[] {}) -+ .describedAs("Specify paths to extra plugin jars to be loaded in addition to those in the plugins folder. This argument can be specified multiple times, once for each extra plugin jar path."); ++ .describedAs("Jar file"); // Paper end } };