mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 18:12:09 +01:00
Add WorldName to blockstate location
This commit is contained in:
parent
a4a1cae173
commit
ec6ade68e0
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ index 7cb4c3e503..a593882988 100644
|
||||||
+ if (thr instanceof ThreadDeath) {
|
+ if (thr instanceof ThreadDeath) {
|
||||||
+ throw (ThreadDeath)thr;
|
+ throw (ThreadDeath)thr;
|
||||||
+ }
|
+ }
|
||||||
+ throw new RuntimeException("Failed to read BlockState at location: (" + block.getX() + ", " + block.getY() + ", " + block.getZ() + ")", thr);
|
+ throw new RuntimeException("Failed to read BlockState at location: " + block.getWorld().getName() + " (" + block.getX() + ", " + block.getY() + ", " + block.getZ() + ")", thr);
|
||||||
+ }
|
+ }
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue