We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b7120 commit b773d8bCopy full SHA for b773d8b
Common Utilities/Config.cs
@@ -128,7 +128,7 @@ public class Config : IConfig
128
{
129
new()
130
131
- AmmoType = ItemType.Ammo556x45,
+ Type = ItemType.Ammo556x45,
132
Amount = 200,
133
Group = "none",
134
},
Common Utilities/ConfigObjects/StartingAmmo.cs
@@ -2,15 +2,15 @@ namespace Common_Utilities.ConfigObjects
2
3
public class StartingAmmo
4
5
- public ItemType AmmoType { get; set; }
+ public ItemType Type { get; set; }
6
7
public ushort Amount { get; set; }
8
9
public string Group { get; set; } = "none";
10
11
public void Deconstruct(out ItemType ammoType, out ushort amount, out string group)
12
13
- ammoType = AmmoType;
+ ammoType = Type;
14
amount = Amount;
15
group = Group;
16
}
0 commit comments