13
0
geforkt von Mirrors/Paper
Dieser Commit ist enthalten in:
Spottedleaf 2019-06-17 17:43:18 -07:00
Ursprung ec6ade68e0
Commit 30fbda1376

Datei anzeigen

@ -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.getWorld().getName() + " (" + 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
}