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); } } }