Tweak the way SkillCommands are constructed.

This commit is contained in:
GJ
2012-05-31 14:03:55 -04:00
parent d15e189b7c
commit 5b3b9fbc30
2 changed files with 3 additions and 4 deletions

View File

@ -13,8 +13,8 @@ public class AcrobaticsCommand extends SkillCommand {
private boolean canRoll;
private boolean canGracefulRoll;
public AcrobaticsCommand(SkillType skill) {
super(skill);
public AcrobaticsCommand() {
super(SkillType.ACROBATICS);
}
@Override