geforkt von Mirrors/FastAsyncWorldEdit
Update Upstream
acd63daddf7b45ce2b7699bc85ae88e0aa4433e9: Slightly improve usability of LocalSession#getSelection. Co-Authored-By: wizjany <568161+wizjany@users.noreply.github.com>
Dieser Commit ist enthalten in:
Ursprung
4af7316118
Commit
c689b4e5d2
@ -714,17 +714,34 @@ public class LocalSession implements TextureHolder {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the selection region. If you change the region, you should
|
* Get the selection region. If you change the region, you should
|
||||||
* call learnRegionChanges(). If the selection is defined in
|
* call learnRegionChanges(). If the selection is not fully defined,
|
||||||
* a different world, the {@code IncompleteRegionException}
|
* the {@code IncompleteRegionException} exception will be thrown.
|
||||||
* exception will be thrown.
|
*
|
||||||
|
* <p>Note that this method will return a region in the current selection world,
|
||||||
|
* which is not guaranteed to be the player's world or even the current world
|
||||||
|
* override. If you require a specific world, use the
|
||||||
|
* {@link LocalSession#getSelection(World)} overload instead.
|
||||||
|
*
|
||||||
|
* @return the selected region
|
||||||
|
* @throws IncompleteRegionException if the region is not fully defined
|
||||||
|
*/
|
||||||
|
public Region getSelection() throws IncompleteRegionException {
|
||||||
|
return getSelection(getSelectionWorld());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the selection region. If you change the region, you should
|
||||||
|
* call learnRegionChanges(). If the selection is defined in
|
||||||
|
* a different world, or the selection isn't fully defined,
|
||||||
|
* the {@code IncompleteRegionException} exception will be thrown.
|
||||||
*
|
*
|
||||||
* @param world the world
|
* @param world the world
|
||||||
* @return a region
|
* @return a region
|
||||||
* @throws IncompleteRegionException if no region is selected
|
* @throws IncompleteRegionException if no region is selected, or the provided world is null
|
||||||
*/
|
*/
|
||||||
public Region getSelection(World world) throws IncompleteRegionException {
|
public Region getSelection(@Nullable World world) throws IncompleteRegionException {
|
||||||
checkNotNull(world);
|
if (world == null || selector.getIncompleteRegion().getWorld() == null
|
||||||
if (selector.getIncompleteRegion().getWorld() == null || !selector.getIncompleteRegion().getWorld().equals(world)) {
|
|| !selector.getIncompleteRegion().getWorld().equals(world)) {
|
||||||
throw new IncompleteRegionException() {
|
throw new IncompleteRegionException() {
|
||||||
@Override
|
@Override
|
||||||
public synchronized Throwable fillInStackTrace() {
|
public synchronized Throwable fillInStackTrace() {
|
||||||
@ -769,6 +786,7 @@ public class LocalSession implements TextureHolder {
|
|||||||
*
|
*
|
||||||
* @return the the world of the selection
|
* @return the the world of the selection
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
public World getSelectionWorld() {
|
public World getSelectionWorld() {
|
||||||
World world = selector.getIncompleteRegion().getWorld();
|
World world = selector.getIncompleteRegion().getWorld();
|
||||||
if (world instanceof WorldWrapper) {
|
if (world instanceof WorldWrapper) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren