Fix makeghostrole eui (#19998)

This commit is contained in:
metalgearsloth
2023-09-11 14:31:45 +10:00
committed by GitHub
parent 497294219a
commit 3c0439167a
5 changed files with 69 additions and 71 deletions

View File

@@ -6,11 +6,11 @@ namespace Content.Shared.Ghost.Roles
[Serializable, NetSerializable]
public sealed class MakeGhostRoleEuiState : EuiStateBase
{
public MakeGhostRoleEuiState(NetEntity entityUid)
public MakeGhostRoleEuiState(NetEntity entity)
{
EntityUid = entityUid;
Entity = entity;
}
public NetEntity EntityUid { get; }
public NetEntity Entity { get; }
}
}