fix: report that a bot has heard an enemy
This commit is contained in:
parent
89ea866dcb
commit
b0e98d0e3f
3 changed files with 2 additions and 4 deletions
|
|
@ -2643,8 +2643,8 @@ void Bot::checkRadioQueue () {
|
|||
else if ((path.flags & NodeFlag::Camp) && rg.chance (75)) {
|
||||
pushChatterMessage (Chatter::GoingToCamp);
|
||||
}
|
||||
else {
|
||||
pushChatterMessage (Chatter::HeardNoise);
|
||||
else if (m_states & Sense::HearingEnemy) {
|
||||
pushChatterMessage (Chatter::HeardTheEnemy);
|
||||
}
|
||||
}
|
||||
else if (rg.chance (30)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue