From d0dde76730a904a620ca05fa35a1af95489c4c1f Mon Sep 17 00:00:00 2001 From: Mircea Kitsune Date: Sat, 12 Feb 2011 02:27:39 +0200 Subject: [PATCH] Bot skill level 2 for reloading in-hand weapon. Makes more sense --- qcsrc/server/bot/havocbot/havocbot.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/bot/havocbot/havocbot.qc b/qcsrc/server/bot/havocbot/havocbot.qc index 7c7392085..f7853a575 100644 --- a/qcsrc/server/bot/havocbot/havocbot.qc +++ b/qcsrc/server/bot/havocbot/havocbot.qc @@ -153,7 +153,7 @@ void havocbot_ai() entity e; // we are currently holding a weapon that's not fully loaded, reload it - if(skill > 2.5) // bots can only reload held weapons on purpose past this skill + if(skill >= 2) // bots can only reload held weapons on purpose past this skill if(self.clip_load < self.clip_size && self.weapon) self.impulse = 20; // "press" the reload button, not sure if this is done right -- 2.39.2