Fix error when the client gets an Eui state message before its open message (#23610)

* Fix error when the client gets an Eui state message before its open message

* Revert "Fix error when the client gets an Eui state message before its open message"

This reverts commit 440e2746ee8d77306f59ddea558eda32ec927f18.

* Make all Eui msgs reliable ordered
This commit is contained in:
DrSmugleaf
2024-01-14 01:18:45 -08:00
committed by GitHub
parent b80f7eed6e
commit 95ef20223c
3 changed files with 3 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ namespace Content.Shared.Eui
public sealed class MsgEuiState : NetMessage
{
public override MsgGroups MsgGroup => MsgGroups.Command;
public override NetDeliveryMethod DeliveryMethod => NetDeliveryMethod.ReliableOrdered;
public uint Id;
public EuiStateBase State = default!;