Skip to content

Commit

Permalink
Serializable inventory now
Browse files Browse the repository at this point in the history
  • Loading branch information
rayzerbrain committed Jun 14, 2022
1 parent 720adfc commit c22f73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShootingRange/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class Config : IConfig
[Description("Determines if the above location will be used or not")]
public bool UseRangeLocation { get; set; } = false;
[Description("The items one will spawn with on the range")]
public List<ItemType> RangerInventory = new()
public List<ItemType> RangerInventory { get; set; } = new()
{
ItemType.GunAK,
ItemType.GunCOM18,
Expand Down

0 comments on commit c22f73b

Please sign in to comment.