Correct indentation

This commit is contained in:
Pascal Serrarens 2025-06-10 14:54:51 +02:00
parent ad8e587f65
commit 6fde996ae2

View File

@ -331,8 +331,9 @@ namespace RoboidControl {
messageId = NetworkIdMsg.Id, messageId = NetworkIdMsg.Id,
participant = sender participant = sender
}; };
this.updateQueue.Enqueue(e);
} }
this.updateQueue.Enqueue(e);
ReceiveData(data, sender); ReceiveData(data, sender);
} }
@ -481,7 +482,7 @@ namespace RoboidControl {
Thing thing = sender.Get(msg.thingId); Thing thing = sender.Get(msg.thingId);
if (thing != null) if (thing != null)
thing.name = msg.name; thing.name = msg.name;
ForwardMessage(sender, msg); ForwardMessage(sender, msg);
} }