mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
10 lines
470 B
Diff
10 lines
470 B
Diff
--- a/net/minecraft/commands/arguments/item/ItemInput.java
|
|
+++ b/net/minecraft/commands/arguments/item/ItemInput.java
|
|
@@ -78,6 +78,6 @@
|
|
}
|
|
|
|
private String getItemName() {
|
|
- return this.item.unwrapKey().map(ResourceKey::location).orElseGet(() -> "unknown[" + this.item + "]").toString();
|
|
+ return this.item.unwrapKey().<Object>map(ResourceKey::location).orElseGet(() -> "unknown[" + this.item + "]").toString(); // Paper - decompile fix
|
|
}
|
|
}
|