geforkt von Mirrors/Paper
Show blockstate location if we failed to read it
Dieser Commit ist enthalten in:
Ursprung
3084b4ce9b
Commit
dee5102404
@ -32,6 +32,7 @@ public class CraftBlockEntityState<T extends BlockEntity> extends CraftBlockStat
|
|||||||
|
|
||||||
this.tileEntity = tileEntity;
|
this.tileEntity = tileEntity;
|
||||||
|
|
||||||
|
try { // Paper - Show blockstate location if we failed to read it
|
||||||
// Paper start
|
// Paper start
|
||||||
this.snapshotDisabled = DISABLE_SNAPSHOT;
|
this.snapshotDisabled = DISABLE_SNAPSHOT;
|
||||||
if (DISABLE_SNAPSHOT) {
|
if (DISABLE_SNAPSHOT) {
|
||||||
@ -44,6 +45,14 @@ public class CraftBlockEntityState<T extends BlockEntity> extends CraftBlockStat
|
|||||||
this.load(this.snapshot);
|
this.load(this.snapshot);
|
||||||
}
|
}
|
||||||
// Paper end
|
// Paper end
|
||||||
|
// Paper start - Show blockstate location if we failed to read it
|
||||||
|
} catch (Throwable thr) {
|
||||||
|
if (thr instanceof ThreadDeath) {
|
||||||
|
throw (ThreadDeath)thr;
|
||||||
|
}
|
||||||
|
throw new RuntimeException("Failed to read BlockState at: world: " + this.getWorld().getName() + " location: (" + this.getX() + ", " + this.getY() + ", " + this.getZ() + ")", thr);
|
||||||
|
}
|
||||||
|
// Paper end - Show blockstate location if we failed to read it
|
||||||
}
|
}
|
||||||
|
|
||||||
protected CraftBlockEntityState(CraftBlockEntityState<T> state, Location location) {
|
protected CraftBlockEntityState(CraftBlockEntityState<T> state, Location location) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren