Skip to content

Commit

Permalink
Update WeeklyReleaseGenerator.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
wtffidy committed Nov 9, 2024
1 parent 83c1eda commit 2394e08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tools/ForDevelopers/WeeklyReleaseGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class WeeklyReleaseGenerator
private CoreBots Core => CoreBots.Instance;
private CoreStory Story = new();

public string OptionsStorage = "QuestIDRange";
public string OptionsStorage = "WeeklyReleaseGenerator";
public bool DontPreconfigure = true;
public List<IOption> Options = new()
{
Expand Down Expand Up @@ -55,8 +55,8 @@ public void Generator()
}

// Join the map first
Core.Join(mapName);
Bot.Wait.ForMapLoad(mapName);
Core.Join(mapName.ToLower());
Bot.Wait.ForMapLoad(mapName.ToLower());

// Initialize a list to store generated lines
List<string> generatedLines = new()
Expand Down

0 comments on commit 2394e08

Please sign in to comment.