Fix errors
This commit is contained in:
@@ -63,7 +63,7 @@ namespace Content.Server.Radio.Components
|
||||
_chatManager.EntitySay(Owner, message);
|
||||
}
|
||||
|
||||
public bool Use(EntityUiduser)
|
||||
public bool Use(EntityUid user)
|
||||
{
|
||||
RadioOn = !RadioOn;
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@ namespace Content.Server.Radio.Components
|
||||
{
|
||||
int ListenRange { get; }
|
||||
|
||||
bool CanListen(string message, EntityUidsource);
|
||||
bool CanListen(string message, EntityUid source);
|
||||
|
||||
void Listen(string message, EntityUidspeaker);
|
||||
void Listen(string message, EntityUid speaker);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Radio.Components
|
||||
{
|
||||
@@ -6,8 +7,8 @@ namespace Content.Server.Radio.Components
|
||||
{
|
||||
IReadOnlyList<int> Channels { get; }
|
||||
|
||||
void Receive(string message, int channel, EntityUidspeaker);
|
||||
void Receive(string message, int channel, EntityUid speaker);
|
||||
|
||||
void Broadcast(string message, EntityUidspeaker);
|
||||
void Broadcast(string message, EntityUid speaker);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user