mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 20:30:28 +01:00
12 lines
594 B
Diff
12 lines
594 B
Diff
--- a/net/minecraft/server/DataConverterFlatten.java
|
|
+++ b/net/minecraft/server/DataConverterFlatten.java
|
|
@@ -378,7 +378,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));
|
|
}
|
|
|