Third time's the charm

This commit is contained in:
abel1502 2025-05-18 15:39:08 +03:00
parent 7c135c4a33
commit 25015a4f7a
No known key found for this signature in database
GPG Key ID: 076926596A536338

View File

@ -208,10 +208,14 @@ public interface IToolAreaAbility extends IBaseAbility {
for(int a = x - range; a <= x + range; a++) {
for(int b = y - range; b <= y + range; b++) {
for(int c = z - range; c <= z + range; c++) {
if (a == x && b == y && c == z)
continue;
tool.breakExtraBlock(world, a, b ,c, player, x, y, z);
}
}
}
tool.breakExtraBlock(world, x, y, z, player, x, y, z);
}
};