File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/main/java/com/falsepattern/lib/internal Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 1
1
package com .falsepattern .lib .internal ;
2
2
3
+ import lombok .val ;
4
+
3
5
import cpw .mods .fml .relauncher .IFMLLoadingPlugin ;
4
6
import cpw .mods .fml .relauncher .IFMLLoadingPlugin .MCVersion ;
5
7
import cpw .mods .fml .relauncher .IFMLLoadingPlugin .Name ;
13
15
@ Name (Tags .MODID )
14
16
@ SortingIndex (500 )
15
17
public class CoreLoadingPlugin implements IFMLLoadingPlugin {
18
+ static {
19
+ try {
20
+ Class .forName ("thermos.Thermos" );
21
+ val iAmNotFixingThisDontEvenAskPlusSkillIssue =
22
+ new Error ("\n \n " +
23
+ "--------------------------------------------------------------------------------\n " +
24
+ "|Thermos is not supported by FalsePatternLib, please use a normal forge server.|\n " +
25
+ "| Any bug reports concerning this message will be silently deleted. |\n " +
26
+ "--------------------------------------------------------------------------------\n " );
27
+ iAmNotFixingThisDontEvenAskPlusSkillIssue .setStackTrace (new StackTraceElement [0 ]);
28
+ throw iAmNotFixingThisDontEvenAskPlusSkillIssue ;
29
+ } catch (ClassNotFoundException ignored ) {}
30
+ }
16
31
17
32
@ Override
18
33
public String [] getASMTransformerClass () {
You can’t perform that action at this time.
0 commit comments