Removed hipnotic/rogue special cases

This commit is contained in:
cholleme 2003-11-16 22:14:46 +00:00
parent c46162e1c1
commit a8202e52a3

View file

@ -765,22 +765,7 @@ void SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg)
MSG_WriteByte (msg, ent->v.ammo_nails);
MSG_WriteByte (msg, ent->v.ammo_rockets);
MSG_WriteByte (msg, ent->v.ammo_cells);
if (standard_quake)
{
MSG_WriteByte (msg, ent->v.weapon);
}
else
{
for(i=0;i<32;i++)
{
if ( ((int)ent->v.weapon) & (1<<i) )
{
MSG_WriteByte (msg, i);
break;
}
}
}
MSG_WriteByte (msg, ent->v.weapon);
}
/*