From 43014c8bf1d0e003200bfb04cfe30b7523b7c561 Mon Sep 17 00:00:00 2001 From: Mircea Kitsune Date: Sun, 11 Jul 2010 18:09:54 +0300 Subject: [PATCH] Fix a bug in the ghost items code, which was causing team items to not ghost properly. --- qcsrc/server/t_items.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/t_items.qc b/qcsrc/server/t_items.qc index cb8f0b102..4da9a3d08 100644 --- a/qcsrc/server/t_items.qc +++ b/qcsrc/server/t_items.qc @@ -112,7 +112,7 @@ void Item_Show (entity e, float mode) e.model = e.mdl; e.solid = SOLID_NOT; e.colormod = stov(cvar_string("g_ghost_items_color")); - self.glowmod = self.colormod; + e.glowmod = e.colormod; e.alpha = g_ghost_items; e.customizeentityforclient = func_null; @@ -124,7 +124,7 @@ void Item_Show (entity e, float mode) e.model = string_null; e.solid = SOLID_NOT; e.colormod = stov(cvar_string("g_ghost_items_color")); - self.glowmod = self.colormod; + e.glowmod = e.colormod; e.alpha = 0; e.customizeentityforclient = func_null; -- 2.39.2