From e2f0be47be57d52b6e5e93054ec115c798db79a3 Mon Sep 17 00:00:00 2001 From: "bartz24games@gmail.com" Date: Tue, 18 Aug 2020 21:08:28 -0400 Subject: [PATCH] -Removed debug code --- Randomizers/RandoShops.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Randomizers/RandoShops.cs b/Randomizers/RandoShops.cs index c436a61..623c6d1 100644 --- a/Randomizers/RandoShops.cs +++ b/Randomizers/RandoShops.cs @@ -166,13 +166,6 @@ private void RandomizeShops() public override void Save() { File.WriteAllBytes("db\\resident\\shop.wdb", shops.Data); - - List text = new List(); - shops.IdList.Where(id => !id.ID.StartsWith("!")).ToList().ForEach(id => { - text.Add(id.ID); - text.AddRange(Enumerable.Range(0, shops[id.ID].ItemCount).Select(i => $"{Items.items.Find(item => item.ID == shops[id.ID].GetItemID(i)).Name}")); - }); - File.WriteAllLines("shops.txt", text); } } }