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,
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);
}