Mantis 0001078:

o Mines and hand grenades moved to weapon slot 5

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@261 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
tankefugl 2005-07-11 18:01:52 +00:00
parent 505ab77679
commit c01812d4b0

View file

@ -683,7 +683,7 @@ int AvHParasiteGun::iItemSlot(void)
int AvHGrenade::GetItemInfo(ItemInfo *p) const
{
p->iSlot = AVH_FOURTH_SLOT;
p->iSlot = AVH_FIFTH_SLOT;
p->iPosition = 0;
p->pszName = STRING(pev->classname);
@ -701,7 +701,7 @@ int AvHGrenade::GetItemInfo(ItemInfo *p) const
int AvHGrenade::iItemSlot(void)
{
return AVH_FOURTH_SLOT + 1;
return AVH_FIFTH_SLOT + 1;
}