mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 12:13:57 +00:00
Fixed fastclear
This commit is contained in:
parent
779123f419
commit
5ca5ff1198
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
<artifactId>PlotSquared</artifactId>
|
<artifactId>PlotSquared</artifactId>
|
||||||
<version>2.9.16</version>
|
<version>2.9.17</version>
|
||||||
<name>PlotSquared</name>
|
<name>PlotSquared</name>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<build>
|
<build>
|
||||||
|
|
|
@ -124,7 +124,7 @@ public class HybridPop extends PlotPopulator {
|
||||||
|
|
||||||
for (short x = 0; x < 16; x++) {
|
for (short x = 0; x < 16; x++) {
|
||||||
for (short z = 0; z < 16; z++) {
|
for (short z = 0; z < 16; z++) {
|
||||||
if (contains(requiredRegion, this.X + x, this.Z + z)) {
|
if (contains(requiredRegion, x, z)) {
|
||||||
if (this.doFilling) {
|
if (this.doFilling) {
|
||||||
for (short y = 1; y < this.plotheight; y++) {
|
for (short y = 1; y < this.plotheight; y++) {
|
||||||
setBlock(x, y, z, this.filling);
|
setBlock(x, y, z, this.filling);
|
||||||
|
|
Loading…
Reference in a new issue