From c3e64d380685419f96f71035c961907b9dc09a9a Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Sat, 26 Aug 2017 23:22:54 -0500 Subject: [PATCH] Make bots only use q3tourney6 crusher to kill their enemy Only use the crusher for killing the bot's enemy. This doesn't affect 1v1 very much but prevents the whole team of bots in CTF from suddenly shooting at the crusher button. Entering the crusher bounds was basically instant death. --- code/game/ai_dmq3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/ai_dmq3.c b/code/game/ai_dmq3.c index 1a6a6653..fdd598ad 100644 --- a/code/game/ai_dmq3.c +++ b/code/game/ai_dmq3.c @@ -3733,7 +3733,7 @@ void BotMapScripts(bot_state_t *bs) { shootbutton = qfalse; break; } - else { + else if (bs->enemy == i) { shootbutton = qtrue; } }