Lots of new stuff

- Added fakemob api stuff.
- Added new packet wrappers
- More
This commit is contained in:
Dawson
2022-09-09 13:01:18 -04:00
parent 451084a75c
commit 18dd43bafe
34 changed files with 834 additions and 99 deletions
@@ -217,7 +217,7 @@ public class Helper {
for (int y = y1; y <= y2; y++)
for (int z = z1; z <= z2; z++)
if ((block = getBlockAt(world, x, y, z)) != null
&& block.getType()!= XMaterial.AIR.parseMaterial())
&& BlockUtils.getXMaterial(block.getType()) != XMaterial.AIR)
if (Materials.checkFlag(block.getType(),mask))
blocks.add(block);
return blocks;