mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-01-01 14:08:11 +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.queue = queue;
|
||||
this.x = x;
|
||||
this.y = y & 0xFF;
|
||||
this.y = Math.max(0, Math.min(255, y));
|
||||
this.z = z;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user