There we go
This commit is contained in:
parent
69c78d68a1
commit
2c70489885
@ -363,8 +363,10 @@ public abstract class MCommand
|
||||
ret.append('/');
|
||||
|
||||
boolean first = true;
|
||||
for (MCommand mc : commands)
|
||||
Iterator<MCommand> iter = commands.iterator();
|
||||
while(iter.hasNext())
|
||||
{
|
||||
MCommand mc = iter.next();
|
||||
if (sender != null && !mc.requirementsAreMet(sender, false))
|
||||
{
|
||||
ret.append(commandBadColor);
|
||||
@ -382,11 +384,14 @@ public abstract class MCommand
|
||||
{
|
||||
ret.append(Txt.implode(mc.aliases, ","));
|
||||
}
|
||||
|
||||
if (iter.hasNext())
|
||||
{
|
||||
ret.append(' ');
|
||||
first = false;
|
||||
}
|
||||
|
||||
ret.append(Txt.implode(this.aliases, ","));
|
||||
first = false;
|
||||
}
|
||||
|
||||
List<String> args = new ArrayList<String>();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user