Update some stuff
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
yoyosource 2023-01-29 21:53:56 +01:00
Ursprung 6fedbac3f9
Commit c36e6f5d43

Datei anzeigen

@ -91,12 +91,12 @@ public class CuboidCreator4 implements Iterator<Cuboid> {
expand(currentCuboid, new ArrayList<>(Arrays.asList(axes)), entry.getValue());
if (cuboid == null || cuboid.size() < currentCuboid.size()) {
cuboid = currentCuboid;
if (cuboid.size() > positions.size()) {
if (cuboid.size() >= positions.size()) {
break;
}
}
}
if (cuboid.size() > positions.size()) {
if (cuboid.size() >= positions.size()) {
break;
}
}