From 3bb636de197839a862e7c15e31f3c8e9f55e782f Mon Sep 17 00:00:00 2001 From: "s0wlz (Matthias Puchstein)" Date: Wed, 11 Feb 2026 12:35:12 +0100 Subject: [PATCH] Fix HeightmapPacket null check compile error --- Assets/Scripts/Networking/Server/SweServerRuntime.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Networking/Server/SweServerRuntime.cs b/Assets/Scripts/Networking/Server/SweServerRuntime.cs index 5eb3fa065..e24a9d4da 100644 --- a/Assets/Scripts/Networking/Server/SweServerRuntime.cs +++ b/Assets/Scripts/Networking/Server/SweServerRuntime.cs @@ -1708,7 +1708,7 @@ namespace FloodSWE.Networking private void TrackSimulationProgress(HeightmapPacket packet) { - if (simulator == null || packet == null) + if (simulator == null) { return; }