@Override
public void loadCommands() throws PluginConflictException {
addCommand(new Command("setAngle", "set the angle to Degrees, Radians, or Grads", this));
ConsCell temp = getData("angle");
AngleType angle = (temp == null) ? parser.getAngleType() : parser.getAngleType(temp.toString());
parser.setAngleType(angle);
addCommand(new Command("showAngle", "shows the active angle measurment system", this));
}