Merge branch 'master' of github.com:mcMMO-Dev/mcMMO

This commit is contained in:
nossr50 2012-03-22 12:59:52 -07:00
commit 3c42dd69d5
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ public class Mining
case NETHERRACK: case NETHERRACK:
case SANDSTONE: case SANDSTONE:
case STONE: case STONE:
if (!block.hasMetadata("mcmmoPlacedBlock")) { if (block.hasMetadata("mcmmoPlacedBlock")) {
return; return;
} }

View File

@ -266,7 +266,7 @@ public class WoodCutting {
int xp = 0; int xp = 0;
TreeSpecies species = TreeSpecies.getByData(block.getData()); TreeSpecies species = TreeSpecies.getByData(block.getData());
if (block.hasMetadata("placedBlock")) { if (block.hasMetadata("mcmmpPlacedBlock")) {
return; return;
} }