Prevent //snow from placing snow on some blocks that it shouldn't.

Dieser Commit ist enthalten in:
Wizjany 2012-12-25 18:40:34 -05:00
Ursprung a54c7437fc
Commit e728445383

Datei anzeigen

@ -2355,7 +2355,7 @@ public class EditSession {
} }
// Snow should not cover these blocks // Snow should not cover these blocks
if (BlockType.canPassThrough(id)) { if (BlockType.isTranslucent(id)) {
break; break;
} }