Optimized plot sorting

This commit is contained in:
boy0001
2015-07-22 03:08:51 +10:00
parent 80e1f07534
commit 59c672d9a8
7 changed files with 174 additions and 61 deletions

View File

@ -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;
}
}