mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +01:00
Fix empty blockstates having the wrong block-properties
This commit is contained in:
parent
b3c4f3737d
commit
efd45658d5
@ -57,11 +57,11 @@ public 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() {
|
||||
|
Loading…
Reference in New Issue
Block a user