Adds DSay command (#2901)

* DSay command

* Moves getting the clients from DeadChat and AdminDeadChat to a function
This commit is contained in:
Leo
2021-01-03 12:13:31 -03:00
committed by GitHub
parent 32f04fd7ca
commit 57b049d173
3 changed files with 69 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
using Robust.Server.Interfaces.Player;
using Robust.Server.Interfaces.Player;
using Robust.Shared.Interfaces.GameObjects;
namespace Content.Server.Interfaces.Chat
@@ -27,6 +27,7 @@ namespace Content.Server.Interfaces.Chat
void SendOOC(IPlayerSession player, string message);
void SendAdminChat(IPlayerSession player, string message);
void SendDeadChat(IPlayerSession player, string message);
void SendAdminDeadChat(IPlayerSession player, string message);
void SendHookOOC(string sender, string message);