mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-01-04 07:28:17 +01:00
Fixes #504
This commit is contained in:
parent
b9854d31e3
commit
1c844bc5db
@ -28,7 +28,7 @@ public class AsyncBlock implements Block {
|
|||||||
this.world = world;
|
this.world = world;
|
||||||
this.queue = queue;
|
this.queue = queue;
|
||||||
this.x = x;
|
this.x = x;
|
||||||
this.y = y & 0xFF;
|
this.y = Math.max(0, Math.min(255, y));
|
||||||
this.z = z;
|
this.z = z;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user