mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-04 23:10:54 +00:00
check targets[0] before sending it messages
This commit is contained in:
parent
8935fc4c84
commit
508d7da410
1 changed files with 9 additions and 5 deletions
|
@ -529,13 +529,17 @@ the bot finds things it wants to kill/grab.
|
|||
if (ent.items & IT_INVISIBILITY) //FIXME
|
||||
p = 2;
|
||||
else if (coop) {
|
||||
if ([targets[0] classname] == "player")
|
||||
if (![targets[0] ishuman])
|
||||
return 0;
|
||||
if (targets[0]) {
|
||||
if ([targets[0] classname] == "player")
|
||||
if (![targets[0] ishuman])
|
||||
return 0;
|
||||
}
|
||||
p = 100;
|
||||
} else if (teamplay && ent.team == bot.ent.team) {
|
||||
if ([targets[0] classname] == "player")
|
||||
return 0;
|
||||
if (targets[0]) {
|
||||
if ([targets[0] classname] == "player")
|
||||
return 0;
|
||||
}
|
||||
p = 100;
|
||||
} else
|
||||
p = 30;
|
||||
|
|
Loading…
Reference in a new issue