This commit is contained in:
boy0001 2015-03-20 15:11:02 +11:00
parent fbaca34218
commit 0d75622196
23 changed files with 73 additions and 73 deletions

View file

@ -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 {