mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 00:04:23 +01:00
Update and enable mod menu support
This commit is contained in:
parent
0840678241
commit
0be6cf1030
4 changed files with 9 additions and 9 deletions
|
@ -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}"
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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.";
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue