diff --git a/curseforge/install.go b/curseforge/install.go index 8be1066..2c10607 100644 --- a/curseforge/install.go +++ b/curseforge/install.go @@ -370,7 +370,7 @@ func getLatestFile(modInfoData modInfo, mcVersion string, fileID int) (modFileIn } if fileID == 0 { - return modFileInfo{}, errors.New("mod not available for the configured Minecraft version(s) (use the acceptable-remote-versions option to accept more)") + return modFileInfo{}, errors.New("mod not available for the configured Minecraft version(s) (use the acceptable-game-versions option to accept more)") } fileInfoData, err := getFileInfo(modInfoData.ID, fileID) diff --git a/modrinth/install.go b/modrinth/install.go index 98bbd66..ee41a9e 100644 --- a/modrinth/install.go +++ b/modrinth/install.go @@ -143,7 +143,7 @@ func installMod(mod Mod, pack core.Pack) error { return err } if latestVersion.ID == "" { - return errors.New("mod is not available for this Minecraft version (use the acceptable-remote-versions option to accept more) or mod loader") + return errors.New("mod is not available for this Minecraft version (use the acceptable-game-versions option to accept more) or mod loader") } return installVersion(mod, latestVersion, pack)