FTE/SERVER: Fix waypoint_core checking for wrong input to move waypoint

This commit is contained in:
cypress 2024-05-14 18:21:10 -07:00
parent 053906edeb
commit 6c7cad8e51
1 changed files with 5 additions and 3 deletions

View File

@ -832,9 +832,6 @@ void () Waypoint_Functions =
Load_Waypoints();
}
break;
case 110:
Move_Waypoint();
break;
}
self.impulse = 0;
@ -845,6 +842,11 @@ void () Waypoint_Functions =
self.waypoint_delay = time + 1;
}
if (self.button4 && self.weapoiny_delay < time) {
Move_Waypoint();
self.waypoint_delay = time + 0.25;
}
if (self.button7 && self.waypoint_delay < time) {
Select_Waypoint();
self.waypoint_delay = time + 0.25;