Add method override for FAWE logging (#417)

This commit is contained in:
Jeff P 2023-07-24 15:48:42 -04:00 committed by GitHub
parent 9e1d5af97d
commit 7fd50a0507
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -56,4 +56,8 @@ public class CoreProtectLogger extends AbstractDelegateExtent {
return false;
}
public <T extends BlockStateHolder<T>> boolean setBlock(int x, int y, int z, T block) throws WorldEditException {
return setBlock(BlockVector3.at(x,y,z), block);
}
}