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
This commit is contained in:
James Seibel
2026-01-10 11:56:39 -06:00
parent 961c4190ad
commit 053d1333ca
2 changed files with 4 additions and 5 deletions
+3 -4
View File
@@ -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 = "*"