Пример #1
0
        protected override void Success(ChatLog log)
        {
            ChatWindow component = (ChatWindow)((Component)this).get_gameObject().GetComponent <ChatWindow>();

            if (Object.op_Inequality((Object)component, (Object)null))
            {
                component.SetChatLog(log, ChatWindow.eChatType.World);
            }
            base.Success(log);
        }
Пример #2
0
        protected override void Success(ChatLog log)
        {
            ChatWindow component = (ChatWindow)((Component)this).get_gameObject().GetComponent <ChatWindow>();

            if (Object.op_Inequality((Object)component, (Object)null))
            {
                if (this.mIsSystemMessageMerge)
                {
                    component.SetChatLogAndSystemMessageMerge(log, this.mExcludeID);
                }
                else
                {
                    component.SetChatLog(log, ChatWindow.eChatType.Room);
                }
            }
            base.Success(log);
        }