mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-09 14:03:22 +00:00
Refactor
This commit is contained in:
parent
fbaca34218
commit
0d75622196
23 changed files with 73 additions and 73 deletions
|
@ -113,7 +113,7 @@ public class Info extends SubCommand {
|
|||
return true;
|
||||
}
|
||||
String owner = "none";
|
||||
if (plot.owner_ == null) {
|
||||
if (plot.owner == null) {
|
||||
owner = "unowned";
|
||||
}
|
||||
else {
|
||||
|
@ -173,7 +173,7 @@ public class Info extends SubCommand {
|
|||
final String flags = "&6" + (StringUtils.join(FlagManager.getPlotFlags(plot), "").length() > 0 ? StringUtils.join(FlagManager.getPlotFlags(plot), "&7, &6") : "none");
|
||||
final boolean build = (player == null) || plot.isAdded(player.getUUID());
|
||||
String owner = "none";
|
||||
if (plot.owner_ == null) {
|
||||
if (plot.owner == null) {
|
||||
owner = "unowned";
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue