Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-08 12:30:05 +01:00
Added in a valid block ID check in EditSession.rawSetBlock().
Dieser Commit ist enthalten in:
Ursprung
a8c0b7c3d4
Commit
b78d43d95c
@ -143,11 +143,17 @@ public class EditSession {
|
|||||||
*/
|
*/
|
||||||
protected boolean rawSetBlock(Vector pt, BaseBlock block) {
|
protected boolean rawSetBlock(Vector pt, BaseBlock block) {
|
||||||
int y = pt.getBlockY();
|
int y = pt.getBlockY();
|
||||||
|
int type = block.getType();
|
||||||
|
|
||||||
if (y < 0 || y > 127) {
|
if (y < 0 || y > 127) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No invalid blocks
|
||||||
|
if ((type > 25 && type < 35) || type == 36 || type > 92) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
int existing = world.getBlockType(pt);
|
int existing = world.getBlockType(pt);
|
||||||
|
|
||||||
// Clear the container block so that it doesn't drop items
|
// Clear the container block so that it doesn't drop items
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren