From: Rudolf Polzer Date: Sun, 10 Jun 2012 16:32:36 +0000 (+0200) Subject: fix invalid use of autocvar (shouldn't change behaviour) X-Git-Tag: xonotic-v0.7.0~312^2~32 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=5ebfb98f63357ec6c6beba5a3a9587a9c51f3604 fix invalid use of autocvar (shouldn't change behaviour) --- diff --git a/qcsrc/server/t_items.qc b/qcsrc/server/t_items.qc index 35eaad6dda..18b2e3c9ef 100644 --- a/qcsrc/server/t_items.qc +++ b/qcsrc/server/t_items.qc @@ -15,13 +15,14 @@ #ifdef CSQC -float autocvar_cl_ghost_items; -vector autocvar_cl_ghost_items_color; +var float autocvar_cl_ghost_items = 1; +var vector autocvar_cl_ghost_items_color = '-1 -1 -1'; float autocvar_cl_fullbright_items; vector autocvar_cl_staywep_color; float autocvar_cl_staywep_alpha; float autocvar_cl_simple_items; float cl_simple_items; +float cl_ghost_items_alpha; .float spawntime; .float gravity; @@ -53,14 +54,11 @@ void ItemDrawSimple() float csqcitems_started; // remove this after a release or two void csqcitems_start() { - autocvar_cl_ghost_items = bound(0, autocvar_cl_ghost_items, 1); if(autocvar_cl_ghost_items == 1) - autocvar_cl_ghost_items = 0.55; + cl_ghost_items_alpha = 0.55; + else + cl_ghost_items_alpha = bound(0, autocvar_cl_ghost_items, 1); - string _tmp = cvar_string("cl_ghost_items_color"); - if(_tmp == "") - autocvar_cl_ghost_items_color = '-1 -1 -1'; - csqcitems_started = TRUE; } @@ -91,7 +89,7 @@ void ItemRead(float _IsNew) } else { - if (autocvar_cl_ghost_items) + if (cl_ghost_items_alpha) { self.alpha = autocvar_cl_ghost_items; self.colormod = self.glowmod = autocvar_cl_ghost_items_color;