fix: corrected phrases about guarding the planted bomb
This commit is contained in:
parent
ffb92ca962
commit
89ea866dcb
4 changed files with 7 additions and 7 deletions
|
|
@ -2178,7 +2178,7 @@ void Bot::startTask (Task id, float desire, int data, float time, bool resume) {
|
|||
|
||||
if (rg.chance (25) && tid == Task::Camp) {
|
||||
if (game.mapIs (MapFlags::Demolition) && bots.isBombPlanted ()) {
|
||||
pushChatterMessage (Chatter::GuardingDroppedC4);
|
||||
pushChatterMessage (Chatter::GuardingPlantedC4);
|
||||
}
|
||||
else {
|
||||
pushChatterMessage (Chatter::GoingToCamp);
|
||||
|
|
@ -2661,7 +2661,7 @@ void Bot::checkRadioQueue () {
|
|||
case Task::Camp:
|
||||
if (rg.chance (40)) {
|
||||
if (bots.isBombPlanted () && m_team == Team::Terrorist) {
|
||||
pushChatterMessage (Chatter::GuardingDroppedC4);
|
||||
pushChatterMessage (Chatter::GuardingPlantedC4);
|
||||
}
|
||||
else if (m_inEscapeZone && m_team == Team::CT) {
|
||||
pushChatterMessage (Chatter::GuardingEscapeZone);
|
||||
|
|
|
|||
|
|
@ -292,7 +292,7 @@ void BotConfig::loadChatterConfig () {
|
|||
{ "Chatter_VIPSpotted", Chatter::VIPSpotted, 5.3f },
|
||||
{ "Chatter_FriendlyFire", Chatter::FriendlyFire, 2.1f },
|
||||
{ "Chatter_GotBlinded", Chatter::Blind, 12.0f },
|
||||
{ "Chatter_GuardDroppedC4", Chatter::GuardingDroppedC4, 3.0f },
|
||||
{ "Chatter_GuardingPlantedC4", Chatter::GuardingPlantedC4, 3.0f },
|
||||
{ "Chatter_DefusingC4", Chatter::DefusingBomb, 3.0f },
|
||||
{ "Chatter_FoundC4", Chatter::FoundC4, 5.5f },
|
||||
{ "Chatter_ScaredEmotion", Chatter::ScaredEmotion, 6.1f },
|
||||
|
|
@ -304,7 +304,7 @@ void BotConfig::loadChatterConfig () {
|
|||
{ "Chatter_ThreeEnemiesLeft", Chatter::ThreeEnemiesLeft, 12.5f },
|
||||
{ "Chatter_NiceshotPall", Chatter::NiceShotPall, 2.0f },
|
||||
{ "Chatter_GoingToGuardHostages", Chatter::GoingToGuardHostages, 3.0f },
|
||||
{ "Chatter_GoingToGuardDoppedBomb", Chatter::GoingToGuardDroppedC4, 6.0f },
|
||||
{ "Chatter_GoingToGuardDroppedBomb", Chatter::GoingToGuardDroppedC4, 6.0f },
|
||||
{ "Chatter_OnMyWay", Chatter::OnMyWay, 1.5f },
|
||||
{ "Chatter_LeadOnSir", Chatter::LeadOnSir, 5.0f },
|
||||
{ "Chatter_Pinned_Down", Chatter::PinnedDown, 5.0f },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue