mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-06-28 11:44:42 +02: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