Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
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
|
||||
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