yyl
2026-03-26 f4a702e212d1853735f8dae399da69d23bfa510e
Main/System/Message/RichTextMgr.cs
@@ -152,7 +152,20 @@
    public bool ExecuteEvent(RichTextEventEnum type,HrefInfo href)
    {
        return m_RichEvents[type].Execute(type,href);
        if (m_RichEvents == null || !m_RichEvents.ContainsKey(type))
        {
            Debug.LogWarning($"RichTextMgr: Event type {type} not registered");
            return false;
        }
        var evt = m_RichEvents[type];
        if (evt == null)
        {
            Debug.LogWarning($"RichTextMgr: Event handler for {type} is null");
            return false;
        }
        return evt.Execute(type, href);
    }
    public string GetDisplay(RichTextEventEnum type,Dictionary<string,string> dic)