Skip to content

Commit c823d3b

Browse files
committed
correct fawe start/end markers
1 parent 8e72ebd commit c823d3b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3298,7 +3298,9 @@ public int hollowOutRegion(Region region, int thickness, Pattern pattern, Mask m
32983298
outer:
32993299
for (BlockVector3 position : region) {
33003300
for (BlockVector3 recurseDirection : recurseDirections) {
3301+
//FAWE start - mutable
33013302
BlockVector3 neighbor = mutable.setComponents(position).add(recurseDirection);
3303+
//FAWE end
33023304

33033305
if (outside.contains(neighbor)) {
33043306
newOutside.add(position);
@@ -3313,7 +3315,9 @@ public int hollowOutRegion(Region region, int thickness, Pattern pattern, Mask m
33133315
outer:
33143316
for (BlockVector3 position : region) {
33153317
for (BlockVector3 recurseDirection : recurseDirections) {
3318+
//FAWE start - mutable
33163319
BlockVector3 neighbor = mutable.setComponents(position).add(recurseDirection);
3320+
//FAWE end
33173321

33183322
if (outside.contains(neighbor)) {
33193323
continue outer;

0 commit comments

Comments
 (0)