From 4ac69983b274ea63f8608363775ecdb4ce0775f2 Mon Sep 17 00:00:00 2001 From: Matthew Messinger Date: Tue, 10 Dec 2019 21:29:19 -0500 Subject: [PATCH] Add modmenu --- build.gradle | 2 +- gradle.properties | 2 +- .../minelittlepony/client/modmenu/MineLPModMenuFactory.java | 3 +-- src/main/resources/fabric.mod.json | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 5ffd147b..5b03c5ec 100644 --- a/build.gradle +++ b/build.gradle @@ -62,7 +62,7 @@ dependencies { include "com.minelittlepony:Mson:${project.mson_version}" modImplementation "com.minelittlepony:HDSkins:${project.hd_skins_version}" - // modImplementation "io.github.prospector:modmenu:${project.modmenu_version}" + modImplementation "io.github.prospector:modmenu:${project.modmenu_version}" } // diff --git a/gradle.properties b/gradle.properties index 9f36569d..980df603 100644 --- a/gradle.properties +++ b/gradle.properties @@ -16,7 +16,7 @@ org.gradle.daemon=false release=SNAPSHOT # Dependencies - modmenu_version=1.8.0.1.15-pre3+build.14 + modmenu_version=1.8+ kirin_version=1.5-1.15 hd_skins_version=6-1.15 mson_version=1.1.3-1.15 diff --git a/src/main/java/com/minelittlepony/client/modmenu/MineLPModMenuFactory.java b/src/main/java/com/minelittlepony/client/modmenu/MineLPModMenuFactory.java index d39acf95..dbcd8458 100644 --- a/src/main/java/com/minelittlepony/client/modmenu/MineLPModMenuFactory.java +++ b/src/main/java/com/minelittlepony/client/modmenu/MineLPModMenuFactory.java @@ -1,4 +1,4 @@ -/*package com.minelittlepony.client.modmenu; +package com.minelittlepony.client.modmenu; import io.github.prospector.modmenu.api.ModMenuApi; import net.minecraft.client.gui.screen.Screen; @@ -19,4 +19,3 @@ public class MineLPModMenuFactory implements ModMenuApi { return GuiPonySettings::new; } } -*/ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 76ed6a91..c4c9cd57 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -22,7 +22,7 @@ "hdskins": [ "com.minelittlepony.client.hdskins.MineLPHDSkins" ], - "__disabled__modmenu": [ + "modmenu": [ "com.minelittlepony.client.modmenu.MineLPModMenuFactory" ] },