From c22f73bbaf09614a41738f3e674e7ba6cab48513 Mon Sep 17 00:00:00 2001 From: rayzer Date: Tue, 14 Jun 2022 17:38:08 -0500 Subject: [PATCH] Serializable inventory now --- ShootingRange/Config.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShootingRange/Config.cs b/ShootingRange/Config.cs index c76c970..d4fc8f1 100644 --- a/ShootingRange/Config.cs +++ b/ShootingRange/Config.cs @@ -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 RangerInventory = new() + public List RangerInventory { get; set; } = new() { ItemType.GunAK, ItemType.GunCOM18,