From 053d1333cadceef5dc1bae7cc9d91463306462c0 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 10 Jan 2026 11:56:39 -0600 Subject: [PATCH] Fix opening DH in forge mod menu (Fixes #678) Done to fix a forge limitation where logos can't contain a file pathhttps://github.com/MinecraftForge/MinecraftForge/issues/7348 --- coreSubProjects | 2 +- forge/src/main/resources/META-INF/mods.toml | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/coreSubProjects b/coreSubProjects index df63401d1..9f0cb5a39 160000 --- a/coreSubProjects +++ b/coreSubProjects @@ -1 +1 @@ -Subproject commit df63401d114042e303b9acfc7b1a309f0b2dfc6d +Subproject commit 9f0cb5a394827f34cca473fc7994c6e15535b6d1 diff --git a/forge/src/main/resources/META-INF/mods.toml b/forge/src/main/resources/META-INF/mods.toml index df8bd5030..e4564067e 100644 --- a/forge/src/main/resources/META-INF/mods.toml +++ b/forge/src/main/resources/META-INF/mods.toml @@ -12,14 +12,13 @@ issueTrackerURL = "${issues}" #//updateJSONURL="https://change.me.example.invalid/updates.json" # A URL to query for updates for this mod. See the JSON update specification https://mcforge.readthedocs.io/en/latest/gettingstarted/autoupdate/ displayURL = "${homepage}" description = "${description}" #//mandatory. The description text for the mod - logoFile = "assets/distanthorizons/logo.png" - catalogueImageIcon = "assets/distanthorizons/icon.png" + logoFile = "dh_forge_logo.png" #// can't contain a file path due to an old forge limitation https://github.com/MinecraftForge/MinecraftForge/issues/7348 + catalogueImageIcon = "dh_forge_icon.png" #// can't contain a file path due to an old forge limitation https://github.com/MinecraftForge/MinecraftForge/issues/7348 credits = "Massive thanks to all the developers for their hard work to bring Distant Horizons to where it is today. - James" #// if not set defaults to "false" clientSideOnly = "true" #// if not set side defaults to "BOTH" - #// TODO change to "BOTH" when we add server support - side = "CLIENT" + side = "BOTH" #// Allow any version to be present (or not) on the server acceptableRemoteVersions = "*"