File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/com/falsepattern/lib/internal Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ gradleTokenGroupName = GRADLETOKEN_GROUPNAME
5454# In case your mod provides an API for other mods to implement you may declare its package here. Otherwise you can
5555# leave this property empty.
5656# Example value: apiPackage = api + modGroup = com.myname.mymodid -> com.myname.mymodid.api
57- apiPackage = api
57+ apiPackage =
5858
5959# Specify the configuration file for Forge's access transformers here. I must be placed into /src/main/resources/META-INF/
6060# Example value: mymodid_at.cfg
Original file line number Diff line number Diff line change 33import com .falsepattern .lib .config .ConfigurationManager ;
44import com .falsepattern .lib .util .ResourceUtil ;
55import com .google .common .eventbus .EventBus ;
6+ import com .google .common .eventbus .Subscribe ;
67import cpw .mods .fml .common .DummyModContainer ;
78import cpw .mods .fml .common .LoadController ;
89import cpw .mods .fml .common .MetadataCollection ;
9- import cpw .mods .fml .common .Mod ;
1010import cpw .mods .fml .common .event .FMLConstructionEvent ;
11- import cpw .mods .fml .common .event .FMLPreInitializationEvent ;
1211import lombok .Getter ;
1312import net .minecraft .launchwrapper .Launch ;
1413import org .apache .logging .log4j .LogManager ;
@@ -29,7 +28,8 @@ public FalsePatternLib() {
2928 log .info ("Version " + Tags .VERSION + " initialized!" );
3029 }
3130
32- @ Mod .EventHandler
31+ @ SuppressWarnings ("UnstableApiUsage" )
32+ @ Subscribe
3333 public void construct (FMLConstructionEvent e ) {
3434 ConfigurationManager .init ();
3535 }
You can’t perform that action at this time.
0 commit comments