geforkt von Mirrors/FastAsyncWorldEdit
Allow extent to be used down the pipeline in BlockReplace
- It's quite likely for this to be required given BlockReplace use in replacenear - Fixes #1390
Dieser Commit ist enthalten in:
Ursprung
a716dd3778
Commit
d91a971e85
@ -50,7 +50,9 @@ public class BlockReplace implements RegionFunction {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(BlockVector3 position) throws WorldEditException {
|
public boolean apply(BlockVector3 position) throws WorldEditException {
|
||||||
return extent.setBlock(position, pattern.applyBlock(position));
|
//FAWE start - allow extent to be used down the pipeline
|
||||||
|
return pattern.apply(extent, position, position);
|
||||||
|
//FAWE end
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren