Removes smilies from existence. (kinda) (#5649)
This commit is contained in:
11
Content.Server/Chat/Managers/IChatSanitizationManager.cs
Normal file
11
Content.Server/Chat/Managers/IChatSanitizationManager.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Chat.Managers;
|
||||
|
||||
public interface IChatSanitizationManager
|
||||
{
|
||||
public void Initialize();
|
||||
|
||||
public bool TrySanitizeOutSmilies(string input, IEntity speaker, out string sanitized, [NotNullWhen(true)] out string? emote);
|
||||
}
|
||||
Reference in New Issue
Block a user