X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fcl_client.qc;h=7dc5520abfe036f2065f1acd66b526c0e9734645;hp=c601d92cda70d478dd0189c486807a252783f32d;hb=061a3f12e04349b8dc6e05c8d13caa4b4df95136;hpb=220b53b356c5d80ab29559bd2a4e3d9e256ef4e9 diff --git a/qcsrc/server/cl_client.qc b/qcsrc/server/cl_client.qc index c601d92cd..7dc5520ab 100644 --- a/qcsrc/server/cl_client.qc +++ b/qcsrc/server/cl_client.qc @@ -10,8 +10,12 @@ void send_CSQC_nexvelocity(entity e) { msg_entity = e; WriteByte(MSG_ONE, SVC_TEMPENTITY); WriteByte(MSG_ONE, TE_CSQC_NEX_VELOCITY); + WriteByte(MSG_ONE, bound(0, fabs(cvar("g_balance_nex_velocitydependent_halflife")), 1)); WriteShort(MSG_ONE, cvar("g_balance_nex_velocitydependent_minspeed")); WriteShort(MSG_ONE, cvar("g_balance_nex_velocitydependent_maxspeed")); + WriteByte(MSG_ONE, cvar("g_balance_nex_velocitydependent_falloff_rate")); + WriteByte(MSG_ONE, cvar("g_balance_nex_secondary_charge")); + WriteByte(MSG_ONE, cvar("g_balance_nex_secondary_charge_rate")); } void send_CSQC_cr_maxbullets(entity e) {