From f4a8a99d87b1ec1dd173c5d3b4c5d6522e25b105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Sun, 29 Sep 2013 21:29:17 +0200 Subject: [PATCH] avoid misleading no sync report available messages --- OpenRA.Game/Network/SyncReport.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/OpenRA.Game/Network/SyncReport.cs b/OpenRA.Game/Network/SyncReport.cs index 9850b2cbff..52902f9cda 100755 --- a/OpenRA.Game/Network/SyncReport.cs +++ b/OpenRA.Game/Network/SyncReport.cs @@ -196,11 +196,12 @@ namespace OpenRA.Network foreach (var f in e.Fields) Log.Write("sync", "\t\t {0}: {1}".F(f.Key, f.Value)); } + return; } - - Log.Write("sync", "No sync report available!"); } + + Log.Write("sync", "No sync report available!"); } class Report