Fix empty blockstates having the wrong block-properties

This commit is contained in:
Lukas Rieger (Blue) 2024-02-03 00:59:41 +01:00
parent b3c4f3737d
commit efd45658d5
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
1 changed files with 2 additions and 2 deletions

View File

@ -57,11 +57,11 @@ public class BlockProperties {
}
public boolean isCulling() {
return culling.getOr(true);
return culling.getOr(false);
}
public boolean isOccluding() {
return occluding.getOr(true);
return occluding.getOr(false);
}
public boolean isAlwaysWaterlogged() {