From 6fde996ae26eecf4336dc671c7297a6d622721f1 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Tue, 10 Jun 2025 14:54:51 +0200 Subject: [PATCH] Correct indentation --- src/Participants/ParticipantUDP.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Participants/ParticipantUDP.cs b/src/Participants/ParticipantUDP.cs index 860ca65..4079361 100644 --- a/src/Participants/ParticipantUDP.cs +++ b/src/Participants/ParticipantUDP.cs @@ -331,8 +331,9 @@ namespace RoboidControl { messageId = NetworkIdMsg.Id, participant = sender }; + + this.updateQueue.Enqueue(e); } - this.updateQueue.Enqueue(e); ReceiveData(data, sender); } @@ -481,7 +482,7 @@ namespace RoboidControl { Thing thing = sender.Get(msg.thingId); if (thing != null) thing.name = msg.name; - + ForwardMessage(sender, msg); }