Remove hardcoded nerf to treefeller. Fixes #2666

This commit is contained in:
t00thpick1 2015-11-04 15:53:38 -05:00
parent 616200f20f
commit a020890244

View File

@ -62,13 +62,7 @@ public final class Woodcutting {
species = ((Tree) blockState.getData()).getSpecies(); species = ((Tree) blockState.getData()).getSpecies();
} }
int xp = ExperienceConfig.getInstance().getWoodcuttingTreeXP(species); return ExperienceConfig.getInstance().getWoodcuttingTreeXP(species);
if (species == TreeSpecies.JUNGLE && experienceGainMethod == ExperienceGainMethod.TREE_FELLER) {
xp *= 0.5;
}
return xp;
} }
/** /**