mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 07:13:58 -05:00
implement custom tag (descriptor) feature
allow override of level names through configuration few small fixes/improvements
This commit is contained in:
@ -140,6 +140,17 @@ namespace SharedLibraryCore
|
||||
Manager.AddEvent(e);
|
||||
return e;
|
||||
}
|
||||
|
||||
public void Broadcast(IEnumerable<string> messages, EFClient sender = null)
|
||||
{
|
||||
foreach (var message in messages)
|
||||
{
|
||||
#pragma warning disable 4014
|
||||
Broadcast(message, sender).WaitAsync();
|
||||
#pragma warning restore 4014
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Send a message to a particular players
|
||||
|
Reference in New Issue
Block a user