From 228a5cd59d11e7bbed6b30781d4b6f2e68a9b3a0 Mon Sep 17 00:00:00 2001 From: md_5 Date: Fri, 7 Sep 2018 20:51:57 +1000 Subject: [PATCH] Remove vanilla command ambiguity warning Needless support burden --- nms-patches/CommandDispatcher.patch | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/nms-patches/CommandDispatcher.patch b/nms-patches/CommandDispatcher.patch index 5939296b65..2d4a01d3bb 100644 --- a/nms-patches/CommandDispatcher.patch +++ b/nms-patches/CommandDispatcher.patch @@ -23,9 +23,12 @@ CommandAdvancement.a(this.b); CommandExecute.a(this.b); CommandBossBar.a(this.b); -@@ -102,6 +111,11 @@ +@@ -100,8 +109,13 @@ + } + this.b.findAmbiguities((commandnode, commandnode1, commandnode2, collection) -> { - CommandDispatcher.a.warn("Ambiguity between arguments {} and {} with inputs: {}", this.b.getPath(commandnode1), this.b.getPath(commandnode2), collection); +- CommandDispatcher.a.warn("Ambiguity between arguments {} and {} with inputs: {}", this.b.getPath(commandnode1), this.b.getPath(commandnode2), collection); ++ // CommandDispatcher.a.warn("Ambiguity between arguments {} and {} with inputs: {}", this.b.getPath(commandnode1), this.b.getPath(commandnode2), collection); // CraftBukkit }); + return this; + }