mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
updated forge
This commit is contained in:
parent
19bcfb21e9
commit
62d074e758
2 changed files with 14 additions and 4 deletions
|
@ -23,7 +23,7 @@ if(hasProperty('buildnumber')){
|
|||
}
|
||||
|
||||
minecraft {
|
||||
version = "1.11.2-13.20.0.2259"
|
||||
version = "1.11.2-13.20.0.2299"
|
||||
runDir = "idea"
|
||||
|
||||
mappings = "snapshot_20161126"
|
||||
|
@ -47,9 +47,9 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile "net.darkhax.tesla:Tesla:1.11-1.3.0.51"
|
||||
deobfCompile "mezz.jei:jei_1.11.2:4.2.4.229"
|
||||
deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.0-81"
|
||||
compile "net.darkhax.tesla:Tesla:1.11-1.3.0.52"
|
||||
deobfCompile "mezz.jei:jei_1.11.2:4.3.5.277"
|
||||
deobfCompile "org.cyclops.commoncapabilities:CommonCapabilities:1.11.2-1.3.3-115"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
|
@ -23,6 +23,16 @@ public class GuiFactory implements IModGuiFactory{
|
|||
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasConfigGui(){
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public GuiScreen createConfigGui(GuiScreen parentScreen){
|
||||
return new GuiConfiguration(parentScreen);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<? extends GuiScreen> mainConfigGuiClass(){
|
||||
return GuiConfiguration.class;
|
||||
|
|
Loading…
Reference in a new issue