mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 11:26:42 +00:00
Fixed checkLoadedChunk
This commit is contained in:
@ -160,7 +160,7 @@ public class EditSession {
|
||||
return false;
|
||||
}
|
||||
|
||||
world.checkLoadedChuck(pt);
|
||||
world.checkLoadedChunk(pt);
|
||||
|
||||
// No invalid blocks
|
||||
if (!world.isValidBlockType(type)) {
|
||||
@ -394,7 +394,7 @@ public class EditSession {
|
||||
* @return BaseBlock
|
||||
*/
|
||||
public BaseBlock rawGetBlock(Vector pt) {
|
||||
world.checkLoadedChuck(pt);
|
||||
world.checkLoadedChunk(pt);
|
||||
|
||||
int type = world.getBlockType(pt);
|
||||
int data = world.getBlockData(pt);
|
||||
|
Reference in New Issue
Block a user