mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-22 03:51:12 +00:00
don't access Waypoint.b_sound directly (one less place to fix when I come
up with a better name:)
This commit is contained in:
parent
b5e1597081
commit
1c48b8a977
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ Bot has lost its target.
|
|||
|
||||
[self targetDrop:targ];
|
||||
if ([targ isKindOfClass:[Waypoint class]])
|
||||
((Waypoint)targ).b_sound &= ~b_clientflag;
|
||||
[(Waypoint)targ clearRouteForBot:self];
|
||||
|
||||
// find a new route
|
||||
if (!success) {
|
||||
|
|
Loading…
Reference in a new issue