Skip to content

Commit

Permalink
feat: add mp5sd weapon
Browse files Browse the repository at this point in the history
fix #343
  • Loading branch information
akiver committed Oct 20, 2018
1 parent 9735cd2 commit e32fade
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Core/Models/Weapon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public class Weapon
public const string G3SG1 = "G3SG1";
public const string KNIFE = "Knife";
public const string M249 = "M249";
public const string MP5SD = "MP5-SD";
public const string MP7 = "MP7";
public const string MP9 = "MP9";
public const string MAC_10 = "MAC-10";
Expand Down Expand Up @@ -213,6 +214,13 @@ public override int GetHashCode()
KillAward = 300
},
new Weapon
{
Element = EquipmentElement.MP5SD,
Name = MP5SD,
Type = WeaponType.SMG,
KillAward = 600
},
new Weapon
{
Element = EquipmentElement.MP7,
Name = MP7,
Expand Down

0 comments on commit e32fade

Please sign in to comment.