Fix HeightmapPacket null check compile error

This commit is contained in:
2026-02-11 12:35:12 +01:00
parent e9294e3f93
commit 3bb636de19

View File

@@ -1708,7 +1708,7 @@ namespace FloodSWE.Networking
private void TrackSimulationProgress(HeightmapPacket packet)
{
if (simulator == null || packet == null)
if (simulator == null)
{
return;
}