Fixing herbalism to look for cobble walls when trying to convert cobble walls.

This commit is contained in:
Glitchfinder 2012-11-04 21:47:15 -08:00
parent f4cb83319e
commit 91a18fe7a2

View File

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