mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
12 lines
600 B
Diff
12 lines
600 B
Diff
--- a/net/minecraft/server/DataConverterFlatten.java
|
|
+++ b/net/minecraft/server/DataConverterFlatten.java
|
|
@@ -376,7 +376,7 @@
|
|
Typed<?> typed2 = typed.getOrCreateTyped(opticfinder1);
|
|
Dynamic<?> dynamic1 = (Dynamic) typed2.get(DSL.remainderFinder());
|
|
|
|
- dynamic1 = dynamic1.set("Damage", dynamic1.createInt(i));
|
|
+ if (i != 0) dynamic1 = dynamic1.set("Damage", dynamic1.createInt(i)); // CraftBukkit
|
|
typed1 = typed1.set(opticfinder1, typed2.set(DSL.remainderFinder(), dynamic1));
|
|
}
|
|
|