geforkt von Mirrors/Paper
Merge pull request #2200 from Spottedleaf/patch-1
Add world name to blockstate location if we fail to read it
Dieser Commit ist enthalten in:
Commit
da401a6d10
@ -26,7 +26,7 @@ index 7cb4c3e503..a593882988 100644
|
||||
+ if (thr instanceof ThreadDeath) {
|
||||
+ 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: world: " + block.getWorld().getName() + " location: (" + block.getX() + ", " + block.getY() + ", " + block.getZ() + ")", thr);
|
||||
+ }
|
||||
+ // Paper end
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren