geforkt von Mirrors/FastAsyncWorldEdit
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() {
|
||||
return Math.min(pos1.getBlockX(), pos2.getBlockY());
|
||||
return Math.min(pos1.getBlockY(), pos2.getBlockY());
|
||||
}
|
||||
|
||||
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