From 6527b9469679e78b5569be60456b39fce636b072 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Tue, 10 Dec 2013 18:57:13 -0500 Subject: [PATCH] Machine Gun is not a normal weapon anymore, also weaponreplace it with arc --- qcsrc/common/weapons/w_arc.qc | 2 +- qcsrc/common/weapons/w_machinegun.qc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/weapons/w_arc.qc b/qcsrc/common/weapons/w_arc.qc index 18b1ba567..ecf9a3e99 100644 --- a/qcsrc/common/weapons/w_arc.qc +++ b/qcsrc/common/weapons/w_arc.qc @@ -3,7 +3,7 @@ REGISTER_WEAPON( /* WEP_##id */ ARC, /* function */ w_arc, /* ammotype */ ammo_cells, -/* impulse */ 5, +/* impulse */ 3, /* flags */ WEP_FLAG_NORMAL, /* rating */ BOT_PICKUP_RATING_HIGH, /* model */ "arc", diff --git a/qcsrc/common/weapons/w_machinegun.qc b/qcsrc/common/weapons/w_machinegun.qc index 57924a1c2..d6b028c2c 100644 --- a/qcsrc/common/weapons/w_machinegun.qc +++ b/qcsrc/common/weapons/w_machinegun.qc @@ -4,7 +4,7 @@ REGISTER_WEAPON( /* function */ w_uzi, /* ammotype */ ammo_nails, /* impulse */ 3, -/* flags */ WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, +/* flags */ WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN, /* rating */ BOT_PICKUP_RATING_MID, /* model */ "uzi", /* netname */ "uzi", -- 2.39.2