Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
Ursprung
b57c472b86
Commit
236e3c3f6f
@ -2767,7 +2767,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
||||
newVset = this.getHollowed(newVset);
|
||||
}
|
||||
}
|
||||
return setBlocks(newVset, pattern);
|
||||
return this.changes += setBlocks(newVset, pattern);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -2840,7 +2840,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
||||
if (!filled) {
|
||||
vset = getHollowed(vset);
|
||||
}
|
||||
return setBlocks(vset, pattern);
|
||||
return this.changes += setBlocks(vset, pattern);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -2892,7 +2892,7 @@ public class EditSession extends PassthroughExtent implements AutoCloseable {
|
||||
if (!filled) {
|
||||
newVset = this.getHollowed(newVset);
|
||||
}
|
||||
return setBlocks(newVset, pattern);
|
||||
return this.changes += setBlocks(newVset, pattern);
|
||||
}
|
||||
return changes;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren