Skip to content

Commit

Permalink
Discard changes to RTWLib_CLI/cmd/modules/randomiser.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
sargeantPig authored Dec 30, 2023
1 parent 048011f commit 8e8e113
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions RTWLib_CLI/cmd/modules/randomiser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using RTWLibPlus.interfaces;
using RTWLibPlus.map;
using RTWLibPlus.randomiser;
using System;
using System.Collections.Generic;

public class RandCMD
Expand All @@ -28,7 +27,7 @@ public RandCMD(TWConfig config)
{
this.config = config;
this.edb = new EDB(config.GetPath(Operation.Save, "edb"), config.GetPath(Operation.Load, "edb"));
this.edu = new EDU(@config.GetPath(Operation.Save, "edu"), @config.GetPath(Operation.Load, "edu"));
this.edu = new EDU(config.GetPath(Operation.Save, "edu"), config.GetPath(Operation.Load, "edu"));
this.ds = new DS(config.GetPath(Operation.Save, "ds"), config.GetPath(Operation.Load, "ds"));
this.dr = new DR(config.GetPath(Operation.Save, "dr"), config.GetPath(Operation.Load, "dr"));
this.smf = new SMF(config.GetPath(Operation.Save, "smf"), config.GetPath(Operation.Load, "smf"));
Expand Down Expand Up @@ -90,8 +89,7 @@ public string InitialSetup()
{

list[i].Clear();

p.Message("Loading: " + list[i].LoadPath);
p.Message("Loading: " + RFH.GetPartOfPath(list[i].LoadPath, "randomiser"));
list[i].Parse();
p.Update("Complete");
}
Expand Down

0 comments on commit 8e8e113

Please sign in to comment.