mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 20:56:45 +01:00
fix: Add user friendly message for creationdate placeholder (#3745)
This commit is contained in:
parent
aeb4350ccb
commit
4e5a2b9f96
@ -164,7 +164,7 @@ public final class PlaceholderRegistry {
|
||||
PlayerManager.getPlayerList(plot.getDenied(), player));
|
||||
});
|
||||
this.createPlaceholder("currentplot_creationdate", (player, plot) -> {
|
||||
if (plot.getTimestamp() == 0) {
|
||||
if (plot.getTimestamp() == 0 || !plot.hasOwner()) {
|
||||
return legacyComponent(TranslatableCaption.of("info.unknown"), player);
|
||||
}
|
||||
long creationDate = plot.getTimestamp();
|
||||
|
Loading…
Reference in New Issue
Block a user