Fix HeightmapPacket null check compile error
This commit is contained in:
@@ -1708,7 +1708,7 @@ namespace FloodSWE.Networking
|
||||
|
||||
private void TrackSimulationProgress(HeightmapPacket packet)
|
||||
{
|
||||
if (simulator == null || packet == null)
|
||||
if (simulator == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user