In-hands are now refreshed when the prefix is changed

This commit is contained in:
zumorica
2020-05-14 15:44:05 +02:00
parent 1dd7eb8677
commit 2132ff41d4
6 changed files with 58 additions and 3 deletions

View File

@@ -75,4 +75,16 @@ namespace Content.Shared.GameObjects
Index = index;
}
}
/// <summary>
/// A message that tells the client to refresh in-hands.
/// </summary>
[Serializable, NetSerializable]
public class RefreshInHandsMsg : ComponentMessage
{
public RefreshInHandsMsg()
{
Directed = true;
}
}
}