Add interaction rate limits (#32527)

* Move PlayerRateLimitManager to shared

* Add interaction rate limits

* uncap tests
This commit is contained in:
Leon Friedrich
2024-09-30 01:19:00 +13:00
committed by GitHub
parent 6b49a510d1
commit f1f1fc1dc3
18 changed files with 277 additions and 164 deletions

View File

@@ -0,0 +1,8 @@
namespace Content.Shared.Chat;
public interface ISharedChatManager
{
void Initialize();
void SendAdminAlert(string message);
void SendAdminAlert(EntityUid player, string message);
}