Downgrade atmos to plosiveDepressurizati
Clip text of admin log types on buttons Add a few TODOs for the future coder
This commit is contained in:
parent
25ed516eb0
commit
1342451243
3 changed files with 4 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ public class AdminLogTypeButton : Button
|
|||
public AdminLogTypeButton(LogType type)
|
||||
{
|
||||
Type = type;
|
||||
ClipText = true;
|
||||
ToggleMode = true;
|
||||
Pressed = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -173,6 +173,7 @@ public partial class AdminLogSystem : SharedAdminLogSystem
|
|||
|
||||
private async Task SaveLogs()
|
||||
{
|
||||
// TODO ADMIN LOGS array pool
|
||||
var copy = new List<QueuedLog>(_logQueue.Count + _preRoundLogQueue.Count);
|
||||
|
||||
copy.AddRange(_logQueue);
|
||||
|
|
@ -192,6 +193,7 @@ public partial class AdminLogSystem : SharedAdminLogSystem
|
|||
|
||||
copy.AddRange(_preRoundLogQueue);
|
||||
}
|
||||
|
||||
_preRoundLogQueue.Clear();
|
||||
PreRoundQueue.Set(0);
|
||||
|
||||
|
|
|
|||
|
|
@ -144,6 +144,7 @@ public sealed class AdminLogsEui : BaseEui
|
|||
|
||||
private async void SendLogs(bool replace)
|
||||
{
|
||||
// TODO ADMIN LOGS array pool
|
||||
var logs = new List<SharedAdminLog>(_clientBatchSize);
|
||||
|
||||
await Task.Run(async () =>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue