Treat grass paths as grass.

This commit is contained in:
Dor
2016-03-12 08:12:27 +02:00
parent 4f9a463b9d
commit 40c61149cf
3 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,7 @@ public class Herbalism {
return true;
case DIRT:
case GRASS_PATH:
blockState.setType(Material.GRASS);
return true;
@ -148,6 +149,7 @@ public class Herbalism {
switch (blockState.getType()) {
case DIRT:
case GRASS:
case GRASS_PATH:
blockState.setType(Material.MYCEL);
return true;