Skip to content

Commit b2e00f4

Browse files
Fix fog density being 2.0f instead of 1.8f (Thanks gDEBugger)
1 parent 35b61f0 commit b2e00f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fCraft/World/DefaultSet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public static byte FogDensity(Block b) {
6161
if (b == Block.Water || b == Block.StillWater)
6262
return 11; // (128 * 0.1f - 1);
6363
if (b == Block.Lava || b == Block.StillLava)
64-
return 255; // (128 * 2 - 1);
64+
return 229; // (128 * 1.8f - 1);
6565
return 0;
6666
}
6767

0 commit comments

Comments
 (0)