Some reformat

This commit is contained in:
drtshock
2014-07-01 14:49:42 -05:00
parent 955958ce61
commit dc54f78cc1
83 changed files with 883 additions and 800 deletions

View File

@@ -72,7 +72,8 @@ public class CmdConfig extends FCommand {
if (targetValue) {
success = "\"" + fieldName + "\" option set to true (enabled).";
} else {
}
else {
success = "\"" + fieldName + "\" option set to false (disabled).";
}
}
@@ -231,8 +232,9 @@ public class CmdConfig extends FCommand {
if (sender instanceof Player) {
sendMessage(success);
P.p.log(success + " Command was run by " + fme.getName() + ".");
} else // using P.p.log() instead of sendMessage if run from server console so that "[Factions v#.#.#]" is prepended in server log
P.p.log(success);
}
else // using P.p.log() instead of sendMessage if run from server console so that "[Factions v#.#.#]" is prepended in server log
{ P.p.log(success); }
}
// save change to disk
Conf.save();