scihunt: fix weapon order
This commit is contained in:
parent
3eb5cec34c
commit
2df5e2884e
3 changed files with 8 additions and 8 deletions
|
@ -14,11 +14,14 @@ weapon_t w_null = {};
|
||||||
weapon_t g_weapons[] = {
|
weapon_t g_weapons[] = {
|
||||||
w_null,
|
w_null,
|
||||||
w_crowbar,
|
w_crowbar,
|
||||||
|
w_hammer,
|
||||||
|
w_chainsaw,
|
||||||
w_glock,
|
w_glock,
|
||||||
w_python,
|
w_python,
|
||||||
w_mp5,
|
w_mp5,
|
||||||
w_shotgun,
|
w_shotgun,
|
||||||
w_crossbow,
|
w_crossbow,
|
||||||
|
w_cannon,
|
||||||
w_rpg,
|
w_rpg,
|
||||||
w_gauss,
|
w_gauss,
|
||||||
w_egon,
|
w_egon,
|
||||||
|
@ -26,10 +29,7 @@ weapon_t g_weapons[] = {
|
||||||
w_handgrenade,
|
w_handgrenade,
|
||||||
w_satchel,
|
w_satchel,
|
||||||
w_tripmine,
|
w_tripmine,
|
||||||
w_snark,
|
w_snark
|
||||||
w_cannon,
|
|
||||||
w_chainsaw,
|
|
||||||
w_hammer
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void Weapons_Init(void)
|
void Weapons_Init(void)
|
||||||
|
|
|
@ -34,11 +34,14 @@ enum
|
||||||
{
|
{
|
||||||
WEAPON_NONE,
|
WEAPON_NONE,
|
||||||
WEAPON_CROWBAR,
|
WEAPON_CROWBAR,
|
||||||
|
WEAPON_HAMMER,
|
||||||
|
WEAPON_CHAINSAW,
|
||||||
WEAPON_GLOCK,
|
WEAPON_GLOCK,
|
||||||
WEAPON_PYTHON,
|
WEAPON_PYTHON,
|
||||||
WEAPON_MP5,
|
WEAPON_MP5,
|
||||||
WEAPON_SHOTGUN,
|
WEAPON_SHOTGUN,
|
||||||
WEAPON_CROSSBOW,
|
WEAPON_CROSSBOW,
|
||||||
|
WEAPON_CANNON,
|
||||||
WEAPON_RPG,
|
WEAPON_RPG,
|
||||||
WEAPON_GAUSS,
|
WEAPON_GAUSS,
|
||||||
WEAPON_EGON,
|
WEAPON_EGON,
|
||||||
|
@ -46,10 +49,7 @@ enum
|
||||||
WEAPON_HANDGRENADE,
|
WEAPON_HANDGRENADE,
|
||||||
WEAPON_SATCHEL,
|
WEAPON_SATCHEL,
|
||||||
WEAPON_TRIPMINE,
|
WEAPON_TRIPMINE,
|
||||||
WEAPON_SNARK,
|
WEAPON_SNARK
|
||||||
WEAPON_CANNON,
|
|
||||||
WEAPON_CHAINSAW,
|
|
||||||
WEAPON_HAMMER
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* What the weapons do support and stuff */
|
/* What the weapons do support and stuff */
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue