fix exception message

This commit is contained in:
Spottedleaf
2019-06-15 11:07:03 -07:00
parent 1cda6342bf
commit b1b5cc1713

View File

@@ -26,7 +26,7 @@ index 7cb4c3e503..c3405950d8 100644
+ if (thr instanceof ThreadDeath) {
+ throw (ThreadDeath)thr;
+ }
+ throw new RuntimeException("Failed to read block state at location: (" + block.getX() + ", " + block.getY() + ", " + block.getZ() + ")", thr);
+ throw new RuntimeException("Failed to read BlockState at location: (" + block.getX() + ", " + block.getY() + ", " + block.getZ() + ")", thr);
+ }
+ // Paper end
}