Skip to content

Commit 9173f15

Browse files
committed
fawe start/end markers
1 parent 1489b31 commit 9173f15

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

worldedit-core/src/main/java/com/sk89q/worldedit/EditSession.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3644,10 +3644,11 @@ public Set<BlockVector3> getHollowed(Set<BlockVector3> vset) {
36443644
}
36453645

36463646
private void recurseHollow(Region region, BlockVector3 origin, Set<BlockVector3> outside, Mask mask) {
3647-
// FAWE start - use BlockVector3Set instead of LinkedList & mutable BV3
3647+
// FAWE start - use BlockVector3Set instead of LinkedList
36483648
final BlockVector3Set queue = BlockVector3Set.getAppropriateVectorSet(region);
36493649
queue.add(origin);
36503650

3651+
//FAWE start - mutable
36513652
MutableBlockVector3 mutable = new MutableBlockVector3();
36523653

36533654
while (!queue.isEmpty()) {
@@ -3666,7 +3667,9 @@ private void recurseHollow(Region region, BlockVector3 origin, Set<BlockVector3>
36663667
}
36673668

36683669
for (BlockVector3 recurseDirection : recurseDirections) {
3670+
//FAWE start - mutable
36693671
queue.add(mutable.setComponents(current).add(recurseDirection));
3672+
// FAWE end
36703673
}
36713674
}
36723675
}

0 commit comments

Comments
 (0)