mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 11:26:42 +00:00
Make regions Cloneable
This commit is contained in:
@ -66,4 +66,12 @@ public abstract class AbstractRegion implements Region {
|
||||
expand(change);
|
||||
contract(change);
|
||||
}
|
||||
|
||||
public AbstractRegion clone() {
|
||||
try {
|
||||
return (AbstractRegion) super.clone();
|
||||
} catch (CloneNotSupportedException exc) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user