Fix bug where no XP was granted when Flux Mining

Fixes #2359
This commit is contained in:
TfT_02
2014-12-22 17:25:55 +01:00
parent 3ea845cfd9
commit 522b085499
3 changed files with 6 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ public class Mining {
*
* @param blockState The {@link BlockState} to check ability activation for
*/
protected static int getBlockXp(BlockState blockState) {
public static int getBlockXp(BlockState blockState) {
Material blockType = blockState.getType();
int xp = ExperienceConfig.getInstance().getXp(SkillType.MINING, blockType != Material.GLOWING_REDSTONE_ORE ? blockType : Material.REDSTONE_ORE);