From: Rudolf Polzer Date: Thu, 15 Dec 2011 14:58:24 +0000 (+0100) Subject: fix powerup rules for LMS and CA X-Git-Tag: xonotic-v0.6.0~74^2~101 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3d1817a9f5354dbfa1cf799ee7f3a206dd0ed033;p=xonotic%2Fxonotic-data.pk3dir.git fix powerup rules for LMS and CA --- diff --git a/qcsrc/server/t_items.qc b/qcsrc/server/t_items.qc index 7d2273fe5..9a8ac7123 100644 --- a/qcsrc/server/t_items.qc +++ b/qcsrc/server/t_items.qc @@ -11,6 +11,10 @@ float have_pickup_item(void) return TRUE; if(autocvar_g_powerups == 0) return FALSE; + if(g_lms) + return FALSE; + if(g_ca) + return FALSE; if(g_arena) return FALSE; }