Skip to content

Commit

Permalink
Fix for removed items.
Browse files Browse the repository at this point in the history
  • Loading branch information
thezerothcat committed Nov 8, 2018
1 parent cf5c992 commit 2259d1b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>lmr.randomizer</groupId>
<artifactId>randomizer</artifactId>
<version>1.42.0</version>
<version>1.42.1</version>
<name>La-Mulana Remake Randomizer</name>
<description>La-Mulana Remake Randomizer</description>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/lmr/randomizer/FileUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Created by thezerothcat on 7/10/2017.
*/
public class FileUtils {
public static final String VERSION = "1.42.0";
public static final String VERSION = "1.42.1";

private static BufferedWriter logWriter;
private static final List<String> KNOWN_RCD_FILE_HASHES = new ArrayList<>();
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/lmr/randomizer/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,9 @@ public static void setRemoveSpaulder(boolean removeSpaulder, boolean update) {
}

public static Set<String> getCurrentRemovedItems() {
if(currentRemovedItems == null) {
return new HashSet<>(0);
}
return currentRemovedItems;
}

Expand Down

0 comments on commit 2259d1b

Please sign in to comment.