mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +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];
|
linkcolour = linkcolours[K_GetWaypointID(waypoint1) % linkcolourssize];
|
||||||
|
|
||||||
if (!K_GetWaypointIsEnabled(waypoint2))
|
if (!K_GetWaypointIsEnabled(waypoint1) || !K_GetWaypointIsEnabled(waypoint2))
|
||||||
{
|
{
|
||||||
linkcolour = SKINCOLOR_BLACK;
|
linkcolour = SKINCOLOR_BLACK;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue