From 29fdd3afd1b85f8f01fd700d851ba8059975ba8c Mon Sep 17 00:00:00 2001 From: Mario Date: Tue, 27 Jun 2017 15:54:15 +1000 Subject: [PATCH] Add support for Quake 3's weapon_grapplinghook --- qcsrc/server/compat/quake3.qc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qcsrc/server/compat/quake3.qc b/qcsrc/server/compat/quake3.qc index 8815aceac..905523bfb 100644 --- a/qcsrc/server/compat/quake3.qc +++ b/qcsrc/server/compat/quake3.qc @@ -5,6 +5,7 @@ spawnfunc(weapon_crylink); spawnfunc(weapon_electro); spawnfunc(weapon_hagar); +spawnfunc(weapon_hook); spawnfunc(weapon_machinegun); spawnfunc(weapon_vortex); spawnfunc(weapon_minelayer); @@ -60,6 +61,9 @@ spawnfunc(ammo_slugs) { spawnfunc_item_cells(this); } spawnfunc(weapon_bfg) { spawnfunc_weapon_crylink(this); } spawnfunc(ammo_bfg) { spawnfunc_item_cells(this); } +// grappling hook -> hook +spawnfunc(weapon_grapplinghook) { spawnfunc_weapon_hook(this); } + // RL -> RL spawnfunc(ammo_rockets) { spawnfunc_item_rockets(this); } -- 2.39.2