Compare commits

..

3 Commits

Author SHA1 Message Date
dordsor21
b13470ab93 Correctly use yIndex when regenerating plots in certain world configurations
- Fixes #3597
2022-05-08 16:55:10 +01:00
Alexander Brandes
faadebd30e chore: Update my name (#3599) 2022-05-07 15:56:24 +02:00
Alexander Brandes
2aeacb3dcf build: Back to snapshot for development 2022-05-05 10:07:58 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -278,7 +278,7 @@ public class BukkitRegionManager extends RegionManager {
int minY = value.getMin().getY(); int minY = value.getMin().getY();
for (int yIndex = 0; yIndex < ids.length; yIndex++) { for (int yIndex = 0; yIndex < ids.length; yIndex++) {
int y = yIndex + minY; int y = yIndex + minY;
BaseBlock id = ids[y]; BaseBlock id = ids[yIndex];
if (id != null) { if (id != null) {
value.setBlock(x1, y, z1, id); value.setBlock(x1, y, z1, id);
} else { } else {

View File

@@ -18,7 +18,7 @@ plugins {
idea idea
} }
version = "6.7.0" version = "6.7.1-SNAPSHOT"
allprojects { allprojects {
group = "com.plotsquared" group = "com.plotsquared"
@@ -140,7 +140,7 @@ allprojects {
} }
developer { developer {
id.set("NotMyFault") id.set("NotMyFault")
name.set("NotMyFault") name.set("Alexander Brandes")
organization.set("IntellectualSites") organization.set("IntellectualSites")
email.set("contact@notmyfault.dev") email.set("contact@notmyfault.dev")
} }