diff --git a/Common Utilities/Config.cs b/Common Utilities/Config.cs index ab29cd3..e257e44 100644 --- a/Common Utilities/Config.cs +++ b/Common Utilities/Config.cs @@ -128,7 +128,7 @@ public class Config : IConfig { new() { - AmmoType = ItemType.Ammo556x45, + Type = ItemType.Ammo556x45, Amount = 200, Group = "none", }, diff --git a/Common Utilities/ConfigObjects/StartingAmmo.cs b/Common Utilities/ConfigObjects/StartingAmmo.cs index 7ce52c3..03b11ce 100644 --- a/Common Utilities/ConfigObjects/StartingAmmo.cs +++ b/Common Utilities/ConfigObjects/StartingAmmo.cs @@ -2,7 +2,7 @@ namespace Common_Utilities.ConfigObjects { public class StartingAmmo { - public ItemType AmmoType { get; set; } + public ItemType Type { get; set; } public ushort Amount { get; set; } @@ -10,7 +10,7 @@ public class StartingAmmo public void Deconstruct(out ItemType ammoType, out ushort amount, out string group) { - ammoType = AmmoType; + ammoType = Type; amount = Amount; group = Group; }