hch
2025-11-21 eb27e5fd31f73b998a4bbd85511a31e40b8c61b7
Main/System/PhantasmPavilion/ChatBubbleHelper.cs
@@ -4,17 +4,17 @@
    public static int GetOtherChatBubbleID(int nowID)
    {
        return PhantasmPavilionModel.Instance.GetNowOtherChatBubbleID(nowID);
        return 0;//PhantasmPavilionModel.Instance.GetNowOtherChatBubbleID(nowID);
    }
    public static int GetMyChatBubbleID()
    {
        return PhantasmPavilionModel.Instance.GetNowChatBubbleID();
        return 0;//PhantasmPavilionModel.Instance.GetNowChatBubbleID();
    }
    public static int GetChatBubbleDefaultID()
    {
        PhantasmPavilionModel.Instance.TryGetDefaultID(PhantasmPavilionTab.ChatBubble, 0, out int defaultID);
        return defaultID;
        // PhantasmPavilionModel.Instance.TryGetDefaultID(PhantasmPavilionTab.ChatBubble, 0, out int defaultID);
        return 0;//defaultID;
    }
}