Skip to content

Commit

Permalink
Prevent //snow from placing snow on some blocks that it shouldn't.
Browse files Browse the repository at this point in the history
  • Loading branch information
wizjany committed Dec 25, 2012
1 parent a54c743 commit e728445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/sk89q/worldedit/EditSession.java
Expand Up @@ -2355,7 +2355,7 @@ public int simulateSnow(Vector pos, double radius)
}

// Snow should not cover these blocks
if (BlockType.canPassThrough(id)) {
if (BlockType.isTranslucent(id)) {
break;
}

Expand Down

0 comments on commit e728445

Please sign in to comment.