mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-31 20:22:05 -07:00
Updated Upstream (CraftBukkit)
Upstream has released updates that appears to apply and compile correctly.
This update has not been tested by PaperMC and as with ANY update, please do your own testing
CraftBukkit Changes:
dc69d2b3
Fix unbound shaped recipe ingredients
This commit is contained in:
@@ -101,14 +101,14 @@ index 95ca5f6d80..0dc948a375 100644
|
||||
return this.a;
|
||||
}
|
||||
diff --git a/src/main/java/net/minecraft/server/DataPalette.java b/src/main/java/net/minecraft/server/DataPalette.java
|
||||
index 7f905b1e09..5a88e8c911 100644
|
||||
index 7f905b1e09..fa5b9262b4 100644
|
||||
--- a/src/main/java/net/minecraft/server/DataPalette.java
|
||||
+++ b/src/main/java/net/minecraft/server/DataPalette.java
|
||||
@@ -0,0 +0,0 @@ package net.minecraft.server;
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
public interface DataPalette<T> {
|
||||
+ default int getDataBits(T object) { return this.a(object); } // Paper - OBFHELPER
|
||||
+ default int getOrCreateIdFor(T object) { return this.a(object); } // Paper - OBFHELPER
|
||||
int a(T var1);
|
||||
|
||||
- @Nullable
|
||||
|
Reference in New Issue
Block a user