Fixed a bug where mcMMO didn't flag all blocks as natural appropriately

in some StructureGrowEvent(s)
This commit is contained in:
nossr50 2021-09-28 16:58:40 -07:00
parent c30892a0a5
commit 73c465ee64

View File

@ -29,10 +29,6 @@ public class WorldListener implements Listener {
if(WorldBlacklist.isWorldBlacklisted(event.getWorld()))
return;
if (!mcMMO.getPlaceStore().isTrue(event.getLocation().getBlock())) {
return;
}
for (BlockState blockState : event.getBlocks()) {
mcMMO.getPlaceStore().setFalse(blockState);
}