1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-18 01:42:32 +01:00

Fixing more NPEs with custom blocks.

This commit is contained in:
Glitchfinder
2012-12-28 20:47:39 -08:00
parent b9f2aa5eff
commit cd5df82d72

View File

@@ -219,7 +219,7 @@ public class Mining {
break;
default:
if (ModChecks.isCustomMiningBlock(block)) {
if (ModChecks.isCustomMiningBlock(block) && ModChecks.getCustomBlock(block) != null) {
CustomBlock customBlock = ModChecks.getCustomBlock(block);
int minimumDropAmount = customBlock.getMinimumDropAmount();
int maximumDropAmount = customBlock.getMaximumDropAmount();
@@ -365,7 +365,7 @@ public class Mining {
int durabilityLoss = Config.getInstance().getAbilityToolDamage();
FakePlayerAnimationEvent armswing = new FakePlayerAnimationEvent(player);
if (ModChecks.isCustomMiningBlock(block)) {
if (ModChecks.isCustomMiningBlock(block) && ModChecks.getCustomBlock(block) != null) {
if (ModChecks.getCustomBlock(block).getTier() < tier) {
return;
}