From: havoc Date: Mon, 8 Dec 2003 07:11:31 +0000 (+0000) Subject: fix the weapon alpha with invisibility in transfusion X-Git-Tag: xonotic-v0.1.0preview~6222 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0a84f309cec3295e19aebe50dd4ea03320729414;p=xonotic%2Fdarkplaces.git fix the weapon alpha with invisibility in transfusion git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3708 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_main.c b/cl_main.c index 5b736f60..65634df6 100644 --- a/cl_main.c +++ b/cl_main.c @@ -855,7 +855,7 @@ static void CL_RelinkNetworkEntities(void) else if (cl.items & IT_INVISIBILITY) { if (gamemode == GAME_TRANSFUSION) - ent->state_current.alpha = 0.5; + ent->state_current.alpha = 128; else ent->state_current.modelindex = 0; }