Fix 3000 errors
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Content.Server.Radio.EntitySystems
|
||||
[UsedImplicitly]
|
||||
public class ListeningSystem : EntitySystem
|
||||
{
|
||||
public void PingListeners(IEntity source, string message)
|
||||
public void PingListeners(EntityUid source, string message)
|
||||
{
|
||||
foreach (var listener in EntityManager.EntityQuery<IListen>(true))
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Content.Server.Radio.EntitySystems
|
||||
{
|
||||
private readonly List<string> _messages = new();
|
||||
|
||||
public void SpreadMessage(IRadio source, IEntity speaker, string message, int channel)
|
||||
public void SpreadMessage(IRadio source, EntityUid speaker, string message, int channel)
|
||||
{
|
||||
if (_messages.Contains(message)) return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user