[UNTESTED] Added plot commenting

This commit is contained in:
boy0001 2014-11-02 14:45:52 +11:00
parent 2dc935eed6
commit 45d8556b87
9 changed files with 264 additions and 101 deletions

View file

@ -17,6 +17,7 @@ import org.bukkit.OfflinePlayer;
import com.intellectualcrafters.plot.Flag;
import com.intellectualcrafters.plot.Plot;
import com.intellectualcrafters.plot.PlotComment;
import com.intellectualcrafters.plot.PlotId;
/**
@ -149,4 +150,10 @@ public abstract class AbstractDB {
public abstract void setDenied(final String world, final Plot plot, final OfflinePlayer player);
public abstract double getRatings(final Plot plot);
public abstract void removeComment(String world, Plot plot, PlotComment comment);
public abstract void setComment(String world, Plot plot, PlotComment comment);
public abstract ArrayList<PlotComment> getComments(String world, Plot plot, int tier);
}