Skip to content

Commit

Permalink
Fixed a bug where mcMMO didn't flag all blocks as natural appropriately
Browse files Browse the repository at this point in the history
in some StructureGrowEvent(s)
  • Loading branch information
nossr50 committed Sep 28, 2021
1 parent c30892a commit 73c465e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/main/java/com/gmail/nossr50/listeners/WorldListener.java
Expand Up @@ -29,10 +29,6 @@ public void onStructureGrow(StructureGrowEvent event) {
if(WorldBlacklist.isWorldBlacklisted(event.getWorld()))
return;

if (!mcMMO.getPlaceStore().isTrue(event.getLocation().getBlock())) {
return;
}

for (BlockState blockState : event.getBlocks()) {
mcMMO.getPlaceStore().setFalse(blockState);
}
Expand Down

0 comments on commit 73c465e

Please sign in to comment.