diff --git a/Assets/ManagedResources/~Lua/Modules/Guild/Transcript/GuildTranscriptManager.lua b/Assets/ManagedResources/~Lua/Modules/Guild/Transcript/GuildTranscriptManager.lua index c3c72b676f..a5ba6b5f10 100644 --- a/Assets/ManagedResources/~Lua/Modules/Guild/Transcript/GuildTranscriptManager.lua +++ b/Assets/ManagedResources/~Lua/Modules/Guild/Transcript/GuildTranscriptManager.lua @@ -85,7 +85,7 @@ function this.RefreshGuildTranscriptInfo(msg) isKillShowTip = false if msg.isKill == 1 then isKillShowTip = true - if attackTypeShotTime == 1 then + if attackTypeShotTime == 1 and endBossId ~= oldBossId then local monsterData = this.GetMonsterConfigDataById(oldBossId) PopupTipPanel.ShowTip( string.format(Language[12346],monsterData.ReadingName) ) end @@ -106,7 +106,7 @@ function this.RefreshGuildTranscriptInfo(msg) Game.GlobalEvent:DispatchEvent(GameEvent.Guild.RefreshGuildTranscript) end function this.IsKillShowTip() - if isKillShowTip and attackTypeShotTime == 0 then + if isKillShowTip and attackTypeShotTime == 0 and endBossId ~= oldBossId then local monsterData = this.GetMonsterConfigDataById(oldBossId) PopupTipPanel.ShowTip( string.format(Language[12346],monsterData.ReadingName) ) end