Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-12 22:20:08 +01:00
Fix typos in CuboidRegion minimum/maximumY methods
Dieser Commit ist enthalten in:
Ursprung
ebbbc9f1a8
Commit
d2a72579ae
@ -88,11 +88,11 @@ public class CuboidRegion extends AbstractRegion implements FlatRegion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getMinimumY() {
|
public int getMinimumY() {
|
||||||
return Math.min(pos1.getBlockX(), pos2.getBlockY());
|
return Math.min(pos1.getBlockY(), pos2.getBlockY());
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMaximumY() {
|
public int getMaximumY() {
|
||||||
return Math.max(pos1.getBlockX(), pos2.getBlockY());
|
return Math.max(pos1.getBlockY(), pos2.getBlockY());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren