mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 11:24:11 +01:00
11 lines
511 B
Diff
11 lines
511 B
Diff
--- a/net/minecraft/world/entity/Display.java
|
|
+++ b/net/minecraft/world/entity/Display.java
|
|
@@ -213,7 +_,7 @@
|
|
if (tag.contains("transformation")) {
|
|
Transformation.EXTENDED_CODEC
|
|
.decode(NbtOps.INSTANCE, tag.get("transformation"))
|
|
- .resultOrPartial(Util.prefix("Display entity", LOGGER::error))
|
|
+ .result() // Paper - Hide text display error on spawn
|
|
.ifPresent(pair -> this.setTransformation(pair.getFirst()));
|
|
}
|
|
|