Skip to content

Commit

Permalink
Remove superfluous debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Apr 15, 2024
1 parent 5161319 commit cbb95c2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Harmony/FixMeshGeneratorNormals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private static sbyte getDensity(IChunk[] ___chunksCache, int _x, int _y, int _z)
density = chunk.GetDensity(_x & 15, _y, _z & 15);
if (density == 0)
{
Log.Warning("Density is zero??");
// Log.Warning("Density is zero??");
density = 1;
}
}
Expand Down
1 change: 1 addition & 0 deletions MicroSplat.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Harmony\FixMeshGeneratorNormals.cs" />
<Compile Include="Harmony\MicroSplatBiomeColors.cs" />
<Compile Include="Harmony\MicroSplatCmd.cs" />
<Compile Include="Harmony\MicroSplat.cs" />
Expand Down
Binary file modified MicroSplat.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion ModInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<Description value="Replace vanilla MicroSplat shader for better visual fidelity." />
<Website value="https://github.com/OCB7D2D/OcbMicroSplat" />
<Author value="ocbMaurice" />
<Version value="0.7.0" />
<Version value="0.7.1" />
</xml>
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ Download from https://github.com/OCB7D2D/OcbMicroSplatHelper/releases

## Changelog

### Version 0.7.1

- Remove superfluous debug message

### Version 0.7.0

- Add geometry/vertex tessellation
Expand Down

0 comments on commit cbb95c2

Please sign in to comment.