Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 02:50:05 +01:00
Fix Chorus-Plant tree type generation (#2015)
fix: chorusplant tree type must generate inside end_stone
Dieser Commit ist enthalten in:
Ursprung
f9527ce2b7
Commit
f33d93591a
@ -150,7 +150,11 @@ public final class TreeGenerator {
|
||||
public boolean generate(EditSession editSession, BlockVector3 pos) throws MaxChangedBlocksException {
|
||||
//FAWE start - ensure canGenerateOn is called.
|
||||
// chorus plants have to generate starting in the end stone itself, not the air above the ground
|
||||
return super.generate(editSession, pos.subtract(0, 1, 0));
|
||||
BlockVector3 down = pos.subtract(0, 1, 0);
|
||||
if (!canGenerateOn(editSession.getBlockType(down.getX(), down.getY(), down.getZ()))) {
|
||||
return false;
|
||||
}
|
||||
return editSession.getWorld().generateTree(this, editSession, down);
|
||||
//FAWE end
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren