diff --git a/Assets/ManagedResources/~Lua/Modules/Chat/ChatManager.lua b/Assets/ManagedResources/~Lua/Modules/Chat/ChatManager.lua
index 5cce2227ca..4211d814a5 100644
--- a/Assets/ManagedResources/~Lua/Modules/Chat/ChatManager.lua
+++ b/Assets/ManagedResources/~Lua/Modules/Chat/ChatManager.lua
@@ -466,7 +466,7 @@ function this.RequestSendGuildTranscript(func)
local channel = CHAT_CHANNEL.FAMILY
local guildData = MyGuildManager.GetMyGuildInfo()
local content = string.format(
- GetLanguageStrById(ConfigManager.GetConfigData(ConfigName.ErrorCodeHint,135).Desc),
+ GetLanguageStrById("%s发起了集结号角,请全体公会成员前往挑战副本首领!"),
PlayerManager.nickName)
this.RequestSendChatMsg(channel, content, function()
end)
@@ -512,7 +512,7 @@ function this.AnalysisGlobalChat(msg)
chat.gLimitLv = tonumber(headList[5])
chat.joinType = tonumber(headList[6])
chat.content = string.format(
- GetLanguageStrById(ConfigManager.GetConfigData(ConfigName.ErrorCodeHint,136).Desc),
+ GetLanguageStrById("%s 级公会 %s 发布招募信息,诚邀各位冒险者加入!(申请等级不低于 %s 级)【马上加入】"),
chat.gLv,
chat.gName,
chat.gLimitLv)
@@ -520,7 +520,7 @@ function this.AnalysisGlobalChat(msg)
chat.nickName=headList[2]
chat.redpackName=GetLanguageStrById(headList[3])
chat.content = string.format(
- GetLanguageStrById(ConfigManager.GetConfigData(ConfigName.ErrorCodeHint,137).Desc),
+ GetLanguageStrById("%s 发送了%s,请迅速前往抢夺红包!"),
chat.nickName,
chat.redpackName)
elseif chat.type==GLOBAL_CHAT_TYPE.GUILD_AID then