3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

Merge pull request #409 from Brokkonaut/fix-wrong-block-for-snow-check

LEAVES2 should have snow on it too
Dieser Commit ist enthalten in:
Matthew Miller 2018-03-27 14:56:18 +10:00 committet von GitHub
Commit ca660f1260
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -1657,7 +1657,7 @@ public class EditSession implements Extent {
// Snow should not cover these blocks
if (BlockType.isTranslucent(id)) {
// Add snow on leaves
if (id != BlockID.LEAVES && id != BlockID.LEAVES) {
if (id != BlockID.LEAVES && id != BlockID.LEAVES2) {
break;
}
}