]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/server/csqceffects.qc
fix running guns
[divverent/nexuiz.git] / data / qcsrc / server / csqceffects.qc
1 void te_csqc_lightningarc(vector from,vector to)
2 {
3         WriteByte(MSG_BROADCAST, SVC_TEMPENTITY);
4         WriteByte(MSG_BROADCAST, TE_CSQC_LIGHTNINGARC);
5
6         WriteCoord(MSG_BROADCAST, from_x);
7         WriteCoord(MSG_BROADCAST, from_y);
8         WriteCoord(MSG_BROADCAST, from_z);
9         WriteCoord(MSG_BROADCAST, to_x);
10         WriteCoord(MSG_BROADCAST, to_y);
11         WriteCoord(MSG_BROADCAST, to_z);
12 }
13