Add missing update event

This commit is contained in:
Pascal Serrarens 2025-05-28 12:49:52 +02:00
parent 63b5a75618
commit e646326aa3

View File

@ -117,8 +117,14 @@ namespace RoboidControl {
else
this.parent = parent;
this.owner = parent.owner;
this.owner = this.parent.owner;
this.owner.Add(this, true);
Participant.UpdateEvent e = new() {
messageId = ThingMsg.id,
thing = this
};
this.owner.updateQueue.Enqueue(e);
}
public static Thing CreateRemote(Participant owner, byte thingType, byte thingId) {