From f40c6183c03a3bc77b26307f23ec074673700723 Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 1 Apr 2017 21:50:30 +1000 Subject: [PATCH] Fix projectile glowmod support --- qcsrc/client/weapons/projectile.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qcsrc/client/weapons/projectile.qc b/qcsrc/client/weapons/projectile.qc index 9c8f518d7..f31bef7a3 100644 --- a/qcsrc/client/weapons/projectile.qc +++ b/qcsrc/client/weapons/projectile.qc @@ -277,10 +277,13 @@ NET_HANDLE(ENT_CLIENT_PROJECTILE, bool isnew) } else this.colormap = myteam; + // TODO: projectiles use glowmaps for their color, not teams + #if 0 if(this.colormap > 0) this.glowmod = colormapPaletteColor(this.colormap & 0x0F, true) * 2; else this.glowmod = '1 1 1'; + #endif } if (f & 2) -- 2.39.2