Skip to content

Commit

Permalink
Remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
LaughingLeader committed Jun 12, 2023
1 parent eb9cf37 commit cf8607d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions GUI/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1690,7 +1690,7 @@ void redo()
{
newOrder = new DivinityLoadOrder()
{
Name = "New" + nextOrders.Count,
Name = $"New{nextOrders.Count}",
Order = ActiveMods.Select(m => m.ToOrderEntry()).ToList()
};
newOrder.FilePath = Path.Combine(Settings.LoadOrderPath, DivinityModDataLoader.MakeSafeFilename(Path.Combine(newOrder.Name + ".json"), '_'));
Expand Down Expand Up @@ -1762,7 +1762,6 @@ public bool LoadModOrder(DivinityLoadOrder order, List<DivinityMissingModData> m
mod.IsActive = true;
mod.Index = loadOrderIndex;
loadOrderIndex += 1;
DivinityApp.Log($"{mod.Index} {mod.Name} {mod.IsActive}");
}
else
{
Expand Down

0 comments on commit cf8607d

Please sign in to comment.