Green thumb now converts cobble walls to mossy cobble walls.

This commit is contained in:
Glitchfinder
2012-11-04 16:06:33 -08:00
parent 01fb245da3
commit c7b3b7a826
4 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,9 @@ public class Herbalism {
// Don't award double drops to mossified cobblestone
mcMMO.placeStore.setTrue(block);
}
else if (Config.getInstance().getHerbalismGreenThumbCobbleWallToMossyWall() && type == Material.COBBLESTONE) {
block.setData((byte) 1);
}
}
}