mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 11:26:42 +00:00
fix #2349
This commit is contained in:
@ -4,12 +4,15 @@ import com.fastasyncworldedit.core.extent.processor.ProcessorScope;
|
||||
import com.sk89q.worldedit.entity.Player;
|
||||
import com.sk89q.worldedit.regions.Region;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import java.util.Objects;
|
||||
|
||||
public class FaweMask implements IDelegateRegion {
|
||||
|
||||
private final Region region;
|
||||
|
||||
public FaweMask(Region region) {
|
||||
this.region = region;
|
||||
public FaweMask(@Nonnull Region region) {
|
||||
this.region = Objects.requireNonNull(region);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user