Compare commits

..

1 Commits

Author SHA1 Message Date
dordsor21
ffa3e2f80f fix: do not create south road twice on unlink
- this was changed from else if to if in 7623698a00 (diff-b05df598e90ce5418467b07e84ef85a80be8bac7c70929063ace9ede4d5cf52eL1000) (for unknown reason)
 - fixes #4704
2025-07-26 14:43:29 +01:00
2 changed files with 2 additions and 3 deletions

View File

@@ -371,8 +371,7 @@ public final class PlotModificationManager {
manager.createRoadSouthEast(current, queue);
}
}
}
if (current.isMerged(Direction.SOUTH)) {
} else if (current.isMerged(Direction.SOUTH)) {
manager.createRoadSouth(current, queue);
}
}

View File

@@ -35,7 +35,7 @@ serverlib = "2.3.7"
# Gradle plugins
shadow = "8.3.8"
grgit = "4.1.1"
spotless = "7.2.1"
spotless = "7.2.0"
publish = "0.34.0"
runPaper = "2.3.1"