Skip to content

Commit c92474a

Browse files
committed
fix: speaker settings is not saved correctly
1 parent 6da76f7 commit c92474a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/ngtlib-patches/jp/ngt/ngtlib/io/NGTFileLoader.java.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
return MODS_DIR;
2121
} else {
2222
- MODS_DIR = new ArrayList<>();
23-
+ java.util.HashSet<File> mods = new java.util.HashSet<>();
23+
+ java.util.LinkedHashSet<File> mods = new java.util.LinkedHashSet<>();
2424

2525
- try {
2626
- File file1 = new File(Thread.currentThread().getContextClassLoader().getResource("").getPath());

0 commit comments

Comments
 (0)