hch
2025-12-04 dfe911cae4451f4df04316145fe1f67d433c62f4
Main/System/Chat/ChatManager.cs
@@ -338,6 +338,7 @@
    public readonly int maxTalkCount = 1000;  //聊天数量上限
    public readonly int deleteTalkCount = 300;  //聊天数量上限时删除前多少条
    public event Action<ChatChannel> OnDeleteTalkEvent;
    void TryDeleteTalkData(ChatChannel type)
    {
@@ -346,6 +347,7 @@
        if (datas.Count < maxTalkCount)
            return;
        datas.RemoveRange(0, deleteTalkCount);
        OnDeleteTalkEvent?.Invoke(type);
    }
    public int currentDay = -1;