File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
src/main/java/com/falsepattern/lib Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ mixinsPackage =
71
71
# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
72
72
# This parameter is for legacy compatability only
73
73
# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin
74
- coreModClass = CoreLoadingPlugin
74
+ coreModClass = internal. CoreLoadingPlugin
75
75
# If your project is only a consolidation of mixins or a core mod and does NOT contain a 'normal' mod ( = some class
76
76
# that is annotated with @Mod) you want this to be true. When in doubt: leave it on false!
77
77
containsMixinsAndOrCoreModOnly = true
Original file line number Diff line number Diff line change 1
1
package com .falsepattern .lib .dependencies ;
2
2
3
- import com .falsepattern .lib .CoreLoadingPlugin ;
4
- import com .falsepattern .lib .FalsePatternLib ;
3
+ import com .falsepattern .lib .internal . CoreLoadingPlugin ;
4
+ import com .falsepattern .lib .internal . FalsePatternLib ;
5
5
import lombok .NonNull ;
6
6
import lombok .val ;
7
7
import lombok .var ;
Original file line number Diff line number Diff line change 1
- package com .falsepattern .lib ;
1
+ package com .falsepattern .lib . internal ;
2
2
3
3
import cpw .mods .fml .relauncher .IFMLLoadingPlugin ;
4
4
import cpw .mods .fml .relauncher .IFMLLoadingPlugin .MCVersion ;
@@ -21,7 +21,7 @@ public String[] getASMTransformerClass() {
21
21
22
22
@ Override
23
23
public String getModContainerClass () {
24
- return ModInfo .GROUPNAME + ".FalsePatternLib" ;
24
+ return ModInfo .GROUPNAME + ".internal. FalsePatternLib" ;
25
25
}
26
26
27
27
@ Override
Original file line number Diff line number Diff line change 1
- package com .falsepattern .lib ;
1
+ package com .falsepattern .lib . internal ;
2
2
3
3
import com .google .common .eventbus .EventBus ;
4
4
import cpw .mods .fml .common .DummyModContainer ;
Original file line number Diff line number Diff line change 1
- package com .falsepattern .lib ;
1
+ package com .falsepattern .lib . internal ;
2
2
3
3
public class ModInfo {
4
4
public static final String MODID = "GRADLETOKEN_MODID" ;
You can’t perform that action at this time.
0 commit comments