X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fclient%2Fparticles.qc;h=4c9ff2011ffb91e4d1c52821c610c0caf951093e;hb=1d70346809dd33b32864b3832662878077588e4b;hp=9fcc4bd53b77c82af422bc84654b88499d9bdc71;hpb=011c85517b7460bf24e2c350fcd742006359f71f;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/client/particles.qc b/qcsrc/client/particles.qc index 9fcc4bd53..4c9ff2011 100644 --- a/qcsrc/client/particles.qc +++ b/qcsrc/client/particles.qc @@ -23,3 +23,8 @@ void Net_ReadVortexBeamParticle() else WarpZone_TrailParticles_WithMultiplier(world, particleeffectnum(EFFECT_VORTEX_BEAM), shotorg, endpos, 1, PARTICLES_USEALPHA | PARTICLES_USEFADE); } +NET_HANDLE(TE_CSQC_VORTEXBEAMPARTICLE, bool isNew) +{ + Net_ReadVortexBeamParticle(); + return true; +}