mirror of
https://github.com/CodeMC/WorldGuardWrapper.git
synced 2024-11-10 05:05:20 +01:00
Implement IWrappedRegion.setPriority()
This commit is contained in:
parent
150feaabb5
commit
c57c0c9df5
|
@ -21,6 +21,8 @@ public interface IWrappedRegion {
|
|||
|
||||
int getPriority();
|
||||
|
||||
void setPriority(int priority);
|
||||
|
||||
IWrappedDomain getOwners();
|
||||
|
||||
IWrappedDomain getMembers();
|
||||
|
|
|
@ -111,6 +111,11 @@ public class WrappedRegion implements IWrappedRegion {
|
|||
return handle.getPriority();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPriority(int priority) {
|
||||
handle.setPriority(priority);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IWrappedDomain getOwners() {
|
||||
return new IWrappedDomain() {
|
||||
|
|
|
@ -107,6 +107,11 @@ public class WrappedRegion implements IWrappedRegion {
|
|||
return handle.getPriority();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPriority(int priority) {
|
||||
handle.setPriority(priority);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IWrappedDomain getOwners() {
|
||||
return new IWrappedDomain() {
|
||||
|
|
|
@ -107,6 +107,11 @@ public class WrappedRegion implements IWrappedRegion {
|
|||
return handle.getPriority();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setPriority(int priority) {
|
||||
handle.setPriority(priority);
|
||||
}
|
||||
|
||||
@Override
|
||||
public IWrappedDomain getOwners() {
|
||||
return new IWrappedDomain() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user