mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-06 04:23:26 +00:00
[UNTESTED] Added plot commenting
This commit is contained in:
parent
2dc935eed6
commit
45d8556b87
9 changed files with 264 additions and 101 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue