From 2183be39dd43eb5bf5e8d82dae4d162678262de3 Mon Sep 17 00:00:00 2001 From: Mario Date: Mon, 30 Dec 2013 22:48:18 +1100 Subject: [PATCH] Update vortex function names --- qcsrc/common/weapons/w_vortex.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qcsrc/common/weapons/w_vortex.qc b/qcsrc/common/weapons/w_vortex.qc index 42a2d7480..a8d0ea131 100644 --- a/qcsrc/common/weapons/w_vortex.qc +++ b/qcsrc/common/weapons/w_vortex.qc @@ -1,7 +1,7 @@ #ifdef REGISTER_WEAPON REGISTER_WEAPON( /* WEP_##id */ VORTEX, -/* function */ w_vortex, +/* function */ W_Vortex, /* ammotype */ ammo_cells, /* impulse */ 7, /* flags */ WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, @@ -117,7 +117,7 @@ void W_Vortex_Attack (float issecondary) void spawnfunc_weapon_vortex (void); // defined in t_items.qc .float vortex_chargepool_pauseregen_finished; -float w_vortex(float req) +float W_Vortex(float req) { float dt; float ammo_amount; @@ -293,7 +293,7 @@ float w_vortex(float req) } #endif #ifdef CSQC -float w_vortex(float req) +float W_Vortex(float req) { switch(req) { -- 2.39.2