mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
fix reserved flags
This commit is contained in:
parent
b7a8c8ecd6
commit
386157edc1
@ -18,8 +18,9 @@ public abstract class Flag<V> {
|
|||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void reserve() {
|
public Flag<V> reserve() {
|
||||||
this.reserved = true;
|
this.reserved = true;
|
||||||
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isReserved() {
|
public boolean isReserved() {
|
||||||
|
Loading…
Reference in New Issue
Block a user