]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
fix powerup rules for LMS and CA
authorRudolf Polzer <divverent@alientrap.org>
Thu, 15 Dec 2011 14:58:24 +0000 (15:58 +0100)
committerRudolf Polzer <divverent@alientrap.org>
Thu, 15 Dec 2011 14:58:24 +0000 (15:58 +0100)
qcsrc/server/t_items.qc

index 7d2273fe55ac2cf57a2d4fe0915c069cc5ea80e0..9a8ac71239ba807cfe8019022aae7d7473a9e605 100644 (file)
@@ -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;
        }