From fcb4d9ab2801a7e05f9d305e879c6455e9569c9a Mon Sep 17 00:00:00 2001 From: Spottedleaf Date: Sat, 15 Jun 2019 11:07:03 -0700 Subject: [PATCH] fix exception message --- .../0403-Show-blockstate-location-if-we-failed-to-read-it.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/0403-Show-blockstate-location-if-we-failed-to-read-it.patch b/Spigot-Server-Patches/0403-Show-blockstate-location-if-we-failed-to-read-it.patch index e86ea20d0..de7f5e86d 100644 --- a/Spigot-Server-Patches/0403-Show-blockstate-location-if-we-failed-to-read-it.patch +++ b/Spigot-Server-Patches/0403-Show-blockstate-location-if-we-failed-to-read-it.patch @@ -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 }