mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
11 lines
470 B
Diff
11 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
|
||
|
}
|
||
|
}
|