Add a missing weapons description.

This commit is contained in:
Andrey Akhmichin 2019-08-02 06:14:13 +05:00
parent 21056bf4a5
commit e65265495a
2 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,7 @@ int CGlock::GetItemInfo( ItemInfo *p )
p->iFlags = 0;
p->iId = m_iId = WEAPON_GLOCK;
p->iWeight = GLOCK_WEIGHT;
p->weaponName = "9mm Handgun";
return 1;
}

View File

@ -399,6 +399,7 @@ int CTripmine::GetItemInfo( ItemInfo *p )
p->iPosition = 2;
p->iId = m_iId = WEAPON_TRIPMINE;
p->iWeight = TRIPMINE_WEIGHT;
p->weaponName = "Laser Tripmine";
p->iFlags = ITEM_FLAG_LIMITINWORLD | ITEM_FLAG_EXHAUSTIBLE;
return 1;