Browse Source

This should not be here.

t00thpick1 6 years ago
parent
commit
a073984621
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/gmail/nossr50/listeners/BlockListener.java

+ 2 - 2
src/main/java/com/gmail/nossr50/listeners/BlockListener.java

@@ -150,7 +150,7 @@ public class BlockListener implements Listener {
         BlockState blockState = event.getBlock().getState();
 
         /* Check if the blocks placed should be monitored so they do not give out XP in the future */
-        if (BlockUtils.shouldBeWatched(blockState) && blockState.getType() != Material.CHORUS_FLOWER) {
+        if (BlockUtils.shouldBeWatched(blockState)) {
             // Don't count de-barking wood
             if (!Tag.LOGS.isTagged(event.getBlockReplacedState().getType()) || !Tag.LOGS.isTagged(event.getBlockPlaced().getType()))
                 mcMMO.getPlaceStore().setTrue(blockState);
@@ -184,7 +184,7 @@ public class BlockListener implements Listener {
             BlockState blockState = replacedBlockState.getBlock().getState();
 
             /* Check if the blocks placed should be monitored so they do not give out XP in the future */
-            if (BlockUtils.shouldBeWatched(blockState) && blockState.getType() != Material.CHORUS_FLOWER) {
+            if (BlockUtils.shouldBeWatched(blockState)) {
                 mcMMO.getPlaceStore().setTrue(blockState);
             }
         }