mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Draw black connection if either waypoint is disabled, instead of only the destination
I think this makes a bit more sense
This commit is contained in:
parent
2a2198ade1
commit
68ce8939b9
1 changed files with 1 additions and 1 deletions
|
|
@ -454,7 +454,7 @@ static void K_DebugWaypointsSpawnLine(waypoint_t *const waypoint1, waypoint_t *c
|
|||
|
||||
linkcolour = linkcolours[K_GetWaypointID(waypoint1) % linkcolourssize];
|
||||
|
||||
if (!K_GetWaypointIsEnabled(waypoint2))
|
||||
if (!K_GetWaypointIsEnabled(waypoint1) || !K_GetWaypointIsEnabled(waypoint2))
|
||||
{
|
||||
linkcolour = SKINCOLOR_BLACK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue