From 985b69fe01e5c18eda6c978ab553aeea80ba4b82 Mon Sep 17 00:00:00 2001 From: erik Date: Tue, 27 May 2025 23:10:10 +0200 Subject: [PATCH] Changed to another GUID --- MosswartMassacre/WebSocket.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/MosswartMassacre/WebSocket.cs b/MosswartMassacre/WebSocket.cs index e46d76b..6162943 100644 --- a/MosswartMassacre/WebSocket.cs +++ b/MosswartMassacre/WebSocket.cs @@ -10,6 +10,13 @@ using uTank2; namespace MosswartMassacre { + internal static class SessionInfo + { + + internal static readonly Guid Guid = Guid.NewGuid(); + + internal static readonly string GuidString = Guid.ToString("N"); + } // 1) The envelope type for incoming commands public class CommandEnvelope { @@ -281,7 +288,7 @@ namespace MosswartMassacre type = "telemetry", character_name = CoreManager.Current.CharacterFilter.Name, char_tag = PluginCore.CharTag, - session_id = SessionId, + session_id = SessionInfo.GuidString, timestamp = DateTime.UtcNow.ToString("o"), ew = coords.EW, ns = coords.NS,