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); }
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); }