From b773d8b048caa08c5490adca8305f21d0225b7ca Mon Sep 17 00:00:00 2001 From: Miki_hero <100715076+Mikihero@users.noreply.github.com> Date: Mon, 30 Sep 2024 19:54:22 +0200 Subject: [PATCH] remove breaking change --- Common Utilities/Config.cs | 2 +- Common Utilities/ConfigObjects/StartingAmmo.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }