Add custom mobs automatically as they're killed.

This commit is contained in:
GJ
2013-09-25 10:42:19 -04:00
committed by TfT_02
parent 4a0fee5796
commit a63f745c73
15 changed files with 336 additions and 298 deletions

View File

@ -498,10 +498,6 @@ public final class CombatUtils {
baseXP = ExperienceConfig.getInstance().getCombatXP(type);
break;
case UNKNOWN:
baseXP = 1.0;
break;
case SKELETON:
switch (((Skeleton) target).getSkeletonType()) {
case WITHER:
@ -520,6 +516,8 @@ public final class CombatUtils {
break;
default:
baseXP = 1.0;
ModUtils.addCustomEntity(target);
break;
}
}