Skip to content

Commit

Permalink
remove breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikihero committed Sep 30, 2024
1 parent 03b7120 commit b773d8b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Common Utilities/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public class Config : IConfig
{
new()
{
AmmoType = ItemType.Ammo556x45,
Type = ItemType.Ammo556x45,
Amount = 200,
Group = "none",
},
Expand Down
4 changes: 2 additions & 2 deletions Common Utilities/ConfigObjects/StartingAmmo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ namespace Common_Utilities.ConfigObjects
{
public class StartingAmmo
{
public ItemType AmmoType { get; set; }
public ItemType Type { get; set; }

public ushort Amount { get; set; }

public string Group { get; set; } = "none";

public void Deconstruct(out ItemType ammoType, out ushort amount, out string group)
{
ammoType = AmmoType;
ammoType = Type;
amount = Amount;
group = Group;
}
Expand Down

0 comments on commit b773d8b

Please sign in to comment.