diff --git a/IRTweaks/IRTweaks/Modules/UI/CombatLog.cs b/IRTweaks/IRTweaks/Modules/UI/CombatLog.cs index 5b742f2..d425e0d 100644 --- a/IRTweaks/IRTweaks/Modules/UI/CombatLog.cs +++ b/IRTweaks/IRTweaks/Modules/UI/CombatLog.cs @@ -143,7 +143,7 @@ private static void OnFloatie(MessageCenterMessage message) { senderColor = "#" + ColorUtility.ToHtmlStringRGBA(LazySingletonBehavior.Instance.UIColorRefs.greenHalf); } - string sender = (target.IsPilotable && target.GetPilot() != null) ? $"{target.DisplayName}-{target.GetPilot().Name}" : $"{target.DisplayName}"; + string sender = (target.IsPilotable && target.GetPilot() != null) ? $"{target.GetPilot().Name}" : $"{target.DisplayName}"; string senderWithColor = $"<{senderColor}>{sender}</color>"; Mod.Log.Debug($"ChatMessage senderWithColor: '{senderWithColor}'");