Fix suspicion round end timer, actually show it.

This commit is contained in:
Pieter-Jan Briers
2021-02-04 04:16:36 +01:00
parent a4563d2e75
commit 29918b2810
8 changed files with 180 additions and 61 deletions

View File

@@ -0,0 +1,15 @@
using System;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization;
namespace Content.Shared.GameObjects.EntitySystemMessages
{
public static class SuspicionMessages
{
[Serializable, NetSerializable]
public sealed class SetSuspicionEndTimerMessage : EntitySystemMessage
{
public TimeSpan? EndTime;
}
}
}