Browse Source

Merge pull request #279 from mcunha/fix-mossied-cobblestone

Don't award double drops to mossified cobblestone
Grant 12 years ago
parent
commit
efc0edf3ef
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/main/java/com/gmail/nossr50/skills/gathering/Herbalism.java

+ 2 - 0
src/main/java/com/gmail/nossr50/skills/gathering/Herbalism.java

@@ -62,6 +62,8 @@ public class Herbalism {
             }
             else if (Config.getInstance().getHerbalismGreenThumbCobbleToMossy() && type == Material.COBBLESTONE) {
                 block.setType(Material.MOSSY_COBBLESTONE);
+                // Don't award double drops to mossified cobblestone
+                mcMMO.placeStore.setTrue(block);
             }
         }
     }