Skip to content

Commit

Permalink
derp
Browse files Browse the repository at this point in the history
  • Loading branch information
joker-119 committed Apr 12, 2022
1 parent 0302363 commit 47cc5db
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions CustomItems/Configs/Items.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,81 +22,81 @@ public class Items
/// <summary>
/// Gets the list of emp greanades.
/// </summary>
public EmpGrenade EmpGrenade { get; set; }
public EmpGrenade EmpGrenade { get; set; } = new EmpGrenade();

/// <summary>
/// Gets the list of grenade launchers.
/// </summary>
public GrenadeLauncher GrenadeLauncher { get; set; }
public GrenadeLauncher GrenadeLauncher { get; set; } = new GrenadeLauncher();

/// <summary>
/// Gets the list of implosion grenades.
/// </summary>
public ImplosionGrenade ImplosionGrenade { get; set; }
public ImplosionGrenade ImplosionGrenade { get; set; } = new ImplosionGrenade();

/// <summary>
/// Gets the list of lethal injections.
/// </summary>
public LethalInjection LethalInjection { get; set; }
public LethalInjection LethalInjection { get; set; } = new LethalInjection();

/// <summary>
/// Gets the list of lucky coins.
/// </summary>
public LuckyCoin LuckyCoin { get; set; }
public LuckyCoin LuckyCoin { get; set; } = new LuckyCoin();

/// <summary>
/// Gets the list of mediGuns.
/// </summary>
public MediGun MediGun { get; set; }
public MediGun MediGun { get; set; } = new MediGun();

/// <summary>
/// Gets the list of Scp127s.
/// </summary>
public Scp127 Scp127 { get; set; }
public Scp127 Scp127 { get; set; } = new Scp127();

/// <summary>
/// Gets the list of Scp1499s.
/// </summary>
public Scp1499 Scp1499 { get; set; }
public Scp1499 Scp1499 { get; set; } = new Scp1499();

/// <summary>
/// Gets the list of sniper rifles.
/// </summary>
public SniperRifle SniperRifle { get; set; }
public SniperRifle SniperRifle { get; set; } = new SniperRifle();

/// <summary>
/// Gets the list of tranquilizer guns.
/// </summary>
public TranquilizerGun TranquilizerGun { get; set; }
public TranquilizerGun TranquilizerGun { get; set; } = new TranquilizerGun();

/// <summary>
/// Gets the list of Scp714s.
/// </summary>
public Scp714 Scp714 { get; set; }
public Scp714 Scp714 { get; set; } = new Scp714();

/// <summary>
/// Gets the list of Anti-Memetic Pills.
/// </summary>
public AntiMemeticPills AntiMemeticPills { get; set; }
public AntiMemeticPills AntiMemeticPills { get; set; } = new AntiMemeticPills();

/// <summary>
/// Gets the list of DeflectorSheilds.
/// </summary>
public DeflectorShield DeflectorShield { get; set; }
public DeflectorShield DeflectorShield { get; set; } = new DeflectorShield();

/// <summary>
/// Gets the list of <see cref="Scp2818"/>s.
/// </summary>
public Scp2818 Scp2818 { get; set; }
public Scp2818 Scp2818 { get; set; } = new Scp2818();

/// <summary>
/// Gets the list of C4Charges.
/// </summary>
public C4Charge C4Charge { get; set; }
public C4Charge C4Charge { get; set; } = new C4Charge();

/// <summary>
/// Gets the list of AutoGuns.
/// </summary>
public AutoGun AutoGun { get; set; }
public AutoGun AutoGun { get; set; } = new AutoGun();
}
}
4 changes: 2 additions & 2 deletions CustomItems/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("6.1.0.0")]
[assembly: AssemblyFileVersion("6.1.0.0")]
[assembly: AssemblyVersion("6.1.1.0")]
[assembly: AssemblyFileVersion("6.1.1.0")]

0 comments on commit 47cc5db

Please sign in to comment.