Skip to content

Commit b773d8b

Browse files
committed
remove breaking change
1 parent 03b7120 commit b773d8b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Common Utilities/Config.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public class Config : IConfig
128128
{
129129
new()
130130
{
131-
AmmoType = ItemType.Ammo556x45,
131+
Type = ItemType.Ammo556x45,
132132
Amount = 200,
133133
Group = "none",
134134
},

Common Utilities/ConfigObjects/StartingAmmo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ namespace Common_Utilities.ConfigObjects
22
{
33
public class StartingAmmo
44
{
5-
public ItemType AmmoType { get; set; }
5+
public ItemType Type { get; set; }
66

77
public ushort Amount { get; set; }
88

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

1111
public void Deconstruct(out ItemType ammoType, out ushort amount, out string group)
1212
{
13-
ammoType = AmmoType;
13+
ammoType = Type;
1414
amount = Amount;
1515
group = Group;
1616
}

0 commit comments

Comments
 (0)