mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 14:42:05 +00:00
FTE/SERVER: Fix waypoint_core checking for wrong input to move waypoint
This commit is contained in:
parent
053906edeb
commit
6c7cad8e51
1 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue