File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/java/gg/skytils/skytilsmod/tweaker Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1919package gg .skytils .skytilsmod .tweaker ;
2020
2121import com .google .common .collect .Sets ;
22+ import gg .skytils .earlytweaker .utils .Utils ;
2223import sun .misc .CompoundEnumeration ;
2324
2425import java .io .IOException ;
@@ -40,7 +41,8 @@ public static void checkForDuplicates() throws IOException {
4041 files .add (url .toString ());
4142 }
4243 if (files .size () > 1 ) {
43- throw new RuntimeException ("Duplicate Skytils classes found! Remove the duplicate jar files and try again.\n " + files );
44+ String message = "Duplicate Skytils classes found! Remove the duplicate jar files and try again.\n " + files ;
45+ Utils .makeCrashReport (new RuntimeException (message ), "Duplicate Skytils classes found!" );
4446 }
4547 }
4648}
You can’t perform that action at this time.
0 commit comments