summaryrefslogtreecommitdiffstats
path: root/nms-patches/CustomFunctionData.patch
blob: d478a82391f8c3a1c4c606751cd7452f9472b10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- a/net/minecraft/server/CustomFunctionData.java
+++ b/net/minecraft/server/CustomFunctionData.java
@@ -32,14 +32,16 @@
     private final Map<MinecraftKey, CustomFunction> g = Maps.newHashMap();
     private final ArrayDeque<CustomFunctionData.a> h = new ArrayDeque();
     private boolean i;
-    private final Tags<CustomFunction> j = new Tags((minecraftkey) -> {
+    private final Tags<CustomFunction> j = new Tags<>((minecraftkey) -> { // CraftBukkit - decompile error
         return this.a(minecraftkey) != null;
     }, this::a, "tags/functions", true, "function");
     private final List<CustomFunction> k = Lists.newArrayList();
     private boolean l;
+    private final com.mojang.brigadier.CommandDispatcher<CommandListenerWrapper> dispatcher; // CraftBukkit
 
     public CustomFunctionData(MinecraftServer minecraftserver) {
         this.f = minecraftserver;
+        this.dispatcher = this.f.getCommandDispatcher().a(); // CraftBukkit
     }
 
     @Nullable
@@ -60,7 +62,7 @@
     }
 
     public com.mojang.brigadier.CommandDispatcher<CommandListenerWrapper> d() {
-        return this.f.getCommandDispatcher().a();
+        return dispatcher; // CraftBukkit
     }
 
     public void X_() {
@@ -164,7 +166,7 @@
             arraylist.add(CompletableFuture.supplyAsync(() -> {
                 return a(iresourcemanager, minecraftkey);
             }, Resource.a).thenApplyAsync((list) -> {
-                return CustomFunction.a(minecraftkey, this, list);
+                return CustomFunction.a(minecraftkey1, this, list); // CraftBukkit - decompile error
             }).handle((customfunction, throwable) -> {
                 return this.a(customfunction, throwable, minecraftkey);
             }));