Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-04 18:40:06 +01:00
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
|
||||
* call learnRegionChanges(). If the selection is defined in
|
||||
* a different world, the {@code IncompleteRegionException}
|
||||
* exception will be thrown.
|
||||
* call learnRegionChanges(). If the selection is not fully defined,
|
||||
* the {@code IncompleteRegionException} 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
|
||||
* @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 {
|
||||
checkNotNull(world);
|
||||
if (selector.getIncompleteRegion().getWorld() == null || !selector.getIncompleteRegion().getWorld().equals(world)) {
|
||||
public Region getSelection(@Nullable World world) throws IncompleteRegionException {
|
||||
if (world == null || selector.getIncompleteRegion().getWorld() == null
|
||||
|| !selector.getIncompleteRegion().getWorld().equals(world)) {
|
||||
throw new IncompleteRegionException() {
|
||||
@Override
|
||||
public synchronized Throwable fillInStackTrace() {
|
||||
@ -769,6 +786,7 @@ public class LocalSession implements TextureHolder {
|
||||
*
|
||||
* @return the the world of the selection
|
||||
*/
|
||||
@Nullable
|
||||
public World getSelectionWorld() {
|
||||
World world = selector.getIncompleteRegion().getWorld();
|
||||
if (world instanceof WorldWrapper) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren