mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-11-09 05:25:00 +01:00
World generation options for sponge
This commit is contained in:
@@ -12,4 +12,8 @@ public class RegionWrapper {
|
||||
this.maxZ = maxZ;
|
||||
this.minZ = minZ;
|
||||
}
|
||||
|
||||
public boolean isIn(final int x, final int z) {
|
||||
return ((x >= this.minX) && (x <= this.maxX) && (z >= this.minZ) && (z <= this.maxZ));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user