Skip to content

Commit

Permalink
Fixed build config and updated for legion league
Browse files Browse the repository at this point in the history
  • Loading branch information
skunde committed Jun 6, 2019
1 parent 777d9fe commit 05d6928
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<!-- Jar file entry point -->
<mainClass>com.stefank.Main</mainClass>
</manifest>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ public class Config {

public static boolean useAutomatedTrading = false;

public static String leagueSelection = "Synthesis";
public static String leagueSelection = "Legion";

public static final String[] CURRENCY_TYPES = { "ANY", "chaos", "alchemy", "chisel", "vaal", "fuse" };
public static final String[] AVAILABLE_LEAGUES = new String[]{"Standard", "Hardcore", "Synthesis", "Hardcore Synthesis", "Synthesis Event (SRE001)", "Synthesis Event HC (SRE002)"};
public static final String[] AVAILABLE_LEAGUES = new String[]{"Standard", "Hardcore", "Legion", "Hardcore Legion"};

public static String getEncodedLeagueSelection() {
return leagueSelection.replace(" ", "%20");
Expand Down

0 comments on commit 05d6928

Please sign in to comment.