OutputHandler.felog.info("Error trying to load " + asm.getClassName() + " as a FEMob!");
e.printStackTrace();
return;
}
FEMob annot = c.getAnnotation(FEMob.class);
if (annot == null)
{
throw new IllegalArgumentException(c.getName() + " doesn't have the @FEMob annotation!");
}
type = annot.type();
if (type != EnumMobType.TAMEABLE)
{
// for all the others.. return...
MobTypeRegistry.addMob(type, className);
continue;