Er, forgot to initialize list

This commit is contained in:
MarioE 2013-11-01 23:57:22 -04:00
parent 41121b8412
commit 7e7068294f

View file

@ -32,7 +32,7 @@ namespace TShockAPI.DB
/// <summary>
/// The list of warps.
/// </summary>
public List<Warp> Warps;
public List<Warp> Warps = new List<Warp>();
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public WarpManager(IDbConnection db)