Change command syntax for radius claiming.

Syntax was confusing and people wanted change. Resolves #215.
This commit is contained in:
drtshock
2015-01-15 13:27:11 -06:00
parent b7c34840cd
commit 4d13c9cada
2 changed files with 5 additions and 9 deletions

View File

@@ -188,12 +188,8 @@ public abstract class FCommand extends MCommand<P> {
Faction ret = def;
if (name != null) {
Faction faction = null;
// First we try an exact match
if (faction == null) {
faction = Factions.getInstance().getByTag(name); // Checks for faction name match.
}
Faction faction = Factions.getInstance().getByTag(name); // Checks for faction name match.
// Next we match faction tags
if (faction == null) {