Fixed problems with buildscript

Signed-off-by: deathrat <deathrat43@gmail.com>
This commit is contained in:
deathrat
2013-12-17 19:09:53 -05:00
parent a8baba9430
commit 8d19d71d8a
4 changed files with 12 additions and 4 deletions

View File

@@ -80,4 +80,10 @@ public abstract class DDCommandBase extends CommandBase
player.sendChatToPlayer(cmp);
}
@Override
public int compareTo(Object par1Obj)
{
return this.getCommandName().compareTo(((CommandBase)par1Obj).getCommandName());
}
}