Update and enable mod menu support

This commit is contained in:
Sollace 2019-12-05 15:46:28 +02:00
parent 0840678241
commit 0be6cf1030
4 changed files with 9 additions and 9 deletions

View file

@ -58,7 +58,7 @@ dependencies {
include "com.minelittlepony:Mson:${project.mson_version}"
modImplementation "com.minelittlepony:HDSkins:${project.hd_skins_version}"
//modImplementation "io.github.prospector.modmenu:ModMenu:1.7.15-unstable"
modImplementation "io.github.prospector:modmenu:${project.modmenu_version}"
}
//

View file

@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
# Fabric Properties
# check these on https://fabricmc.net/use
# check these on https://fabricmc.net/use
minecraft_version=1.15-pre3
yarn_mappings=1.15-pre3+build.2:v2
loader_version=0.7.2+build.174
@ -16,7 +16,7 @@ org.gradle.daemon=false
release=SNAPSHOT
# Dependencies
fabric_version=0.3.0+
modmenu_version=1.8.0.1.15-pre3+build.14
kirin_version=1.15-pre3-1.5-1.15-pre3-SNAPSHOT
hd_skins_version=1.15-pre3-6-1.15-pre3-SNAPSHOT
mson_version=1.15-pre3-1.1.3-1.15-pre3-SNAPSHOT
hd_skins_version=1.15-pre3-6-1.15-pre3-SNAPSHOT
mson_version=1.15-pre3-1.1.3-1.15-pre3-SNAPSHOT

View file

@ -22,7 +22,7 @@ import javax.annotation.Nullable;
* In-Game options menu.
*
*/
class GuiPonySettings extends GameGui {
public class GuiPonySettings extends GameGui {
private static final String OPTIONS_PREFIX = "minelp.options.";

View file

@ -1,9 +1,10 @@
/*package com.minelittlepony.client.modmenu;
package com.minelittlepony.client.modmenu;
import com.minelittlepony.client.gui.GuiPonySettings;
import io.github.prospector.modmenu.api.ModMenuApi;
import net.minecraft.client.gui.screen.Screen;
import com.minelittlepony.client.GuiPonySettings;
import java.util.function.Function;
public class MineLPModMenuFactory implements ModMenuApi {
@ -18,4 +19,3 @@ public class MineLPModMenuFactory implements ModMenuApi {
return GuiPonySettings::new;
}
}
*/