fix: Add user friendly message for creationdate placeholder

This commit is contained in:
Alexander Brandes 2022-07-27 16:06:14 +02:00
parent 9609990832
commit c07ac43528
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C

View File

@ -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();