From 2c96f1aae4fd7515adaa744bd417894aa089a882 Mon Sep 17 00:00:00 2001 From: terencehill Date: Fri, 20 Jan 2017 15:48:50 +0100 Subject: [PATCH] Oops! Fix compilation --- qcsrc/server/bot/default/havocbot/roles.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/bot/default/havocbot/roles.qc b/qcsrc/server/bot/default/havocbot/roles.qc index ce5facc16e..a4ca874f92 100644 --- a/qcsrc/server/bot/default/havocbot/roles.qc +++ b/qcsrc/server/bot/default/havocbot/roles.qc @@ -74,7 +74,7 @@ void havocbot_goalrating_items(entity this, float ratingscale, vector org, float if (picker.health && it.health > this.health) continue; if (picker.armorvalue && it.armorvalue > this.armorvalue) continue; - if (picker.weapons && (picker.weapons & ~it.weapons) continue; + if (picker.weapons && (picker.weapons & ~it.weapons)) continue; if (picker.ammo_shells && it.ammo_shells > this.ammo_shells) continue; if (picker.ammo_nails && it.ammo_nails > this.ammo_nails) continue; -- 2.39.2