Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy-XL committed Mar 1, 2025
1 parent 0a44544 commit bc412fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Roles/Neutral/Doomsayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public override void OnReportDeadBody(PlayerControl goku, NetworkedPlayerInfo so
}

public override string NotifyPlayerName(PlayerControl seer, PlayerControl target, string TargetPlayerName = "", bool IsForMeeting = false)
=> seer.IsAlive() && target.IsAlive() ? ColorString(GetRoleColor(CustomRoles.Doomsayer), target.PlayerId.ToString()) + " " + TargetPlayerName : string.Empty;
=> IsForMeeting && seer.IsAlive() && target.IsAlive() ? ColorString(GetRoleColor(CustomRoles.Doomsayer), target.PlayerId.ToString()) + " " + TargetPlayerName : string.Empty;


public static bool HideTabInGuesserUI(int TabId)
Expand Down

0 comments on commit bc412fe

Please sign in to comment.