mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-04 18:56:23 +02:00
Fixed NPE when breaking placed Herbalism blocks.
This commit is contained in:
parent
ce8ddded92
commit
989f12e65b
@ -106,6 +106,7 @@ public class Herbalism {
|
||||
int herbLevel = PP.getSkillLevel(SkillType.HERBALISM);
|
||||
int id = block.getTypeId();
|
||||
Material type = block.getType();
|
||||
|
||||
Byte data = block.getData();
|
||||
Location loc = block.getLocation();
|
||||
Material mat = null;
|
||||
@ -208,6 +209,10 @@ public class Herbalism {
|
||||
break;
|
||||
}
|
||||
|
||||
if (mat == null) {
|
||||
return;
|
||||
}
|
||||
else {
|
||||
ItemStack is = new ItemStack(mat);
|
||||
|
||||
if (herbLevel > 1000 || (Math.random() * 1000 <= herbLevel)) {
|
||||
@ -233,6 +238,7 @@ public class Herbalism {
|
||||
PP.addXP(SkillType.HERBALISM, xp, player);
|
||||
Skills.XpCheckSkill(SkillType.HERBALISM, player);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply the Green Thumb ability.
|
||||
|
Loading…
x
Reference in New Issue
Block a user