mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-11-09 05:25:00 +01:00
Optimized plot sorting
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.intellectualcrafters.plot.object;
|
||||
|
||||
public abstract class PlotFilter {
|
||||
public boolean allowsWorld(String world) {
|
||||
return true;
|
||||
}
|
||||
public boolean allowsPlot(Plot plot) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user