Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-12-18 12:30:06 +01:00
SPIGOT-4825: Clearly error on asynchronous tile access
Dieser Commit ist enthalten in:
Ursprung
bbd66d2046
Commit
5a37f43059
@ -312,7 +312,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -626,6 +838,7 @@
|
@@ -626,14 +838,21 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -320,9 +320,11 @@
|
|||||||
@Nullable
|
@Nullable
|
||||||
@Override
|
@Override
|
||||||
public TileEntity getTileEntity(BlockPosition blockposition) {
|
public TileEntity getTileEntity(BlockPosition blockposition) {
|
||||||
@@ -634,6 +847,12 @@
|
if (isInsideWorld(blockposition)) {
|
||||||
} else if (!this.isClientSide && Thread.currentThread() != this.c) {
|
|
||||||
return null;
|
return null;
|
||||||
|
} else if (!this.isClientSide && Thread.currentThread() != this.c) {
|
||||||
|
- return null;
|
||||||
|
+ throw new IllegalStateException("Asynchronous tile access"); // CraftBukkit - catch
|
||||||
} else {
|
} else {
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ if (capturedTileEntities.containsKey(blockposition)) {
|
+ if (capturedTileEntities.containsKey(blockposition)) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren