fixed xash3d engine compat
removed some paranoid check in bomb defusing
This commit is contained in:
parent
dd7b85dea7
commit
afd29925e2
2 changed files with 13 additions and 31 deletions
|
|
@ -1151,7 +1151,7 @@ void Bot::NewRound (void)
|
|||
if (Random.Long (0, 100) < 50)
|
||||
ChatterMessage (Chatter_NewRound);
|
||||
|
||||
m_thinkInterval = (1.0f / 30.0f) * Random.Float (0.95f, 1.05f);
|
||||
m_thinkInterval = g_gameVersion == CSV_OLD ? 0.0f : (1.0f / 30.0f) * Random.Float (0.95f, 1.05f);
|
||||
}
|
||||
|
||||
void Bot::Kill (void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue