Mod cause Updater to not work #7

Open
opened 2020-07-27 23:42:05 +00:00 by Slexom · 1 comment

I want to integrate the updater in my mod, so I've followed the guide and setup the fabric.mod.json and build.gradle. Sadly, adding the mod cause the updater to not work correctly.
The scanning message at startup not appear, once in game the /modupdater command is not recognized and the dedicated screen in ModMenu stuck at Loading...
This is the fabric.mod.json

{
    "schemaVersion": 1,
    "id": "earthtojavamobs",
    "version": "${version}",
    "name": "Earth2Java",
    "description": "Bring mobs from Minecraft Earth to Minecraft Java Edition.",
    "authors": [
        "Slexom"
    ],
    "contact": {
        "homepage": "https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric",
        "issues": "https://github.com/Slexom/earth2java/issues"
    },
    "license": "MIT License",
    "icon": "assets/earthtojavamobs/logo.png",
    "environment": "*",
    "entrypoints": {
        "main": [
            "slexom.earthtojava.mobs.Earth2JavaMod"
        ],
        "client": [
            "slexom.earthtojava.mobs.Earth2JavaClientMod"
        ]
    },
    "mixins": [
        "earthtojavamobs.mixins.json"
    ],
    "depends": {
        "fabricloader": ">=0.7.4",
        "fabric": "*",
        "minecraft": "1.16.1"
    },
    "suggests": {
        "flamingo": "*"
    },
    "custom": {
        "modupdater": {
            "strategy": "curseforge",
            "projectID": 398022
        }
    }
}

The released mod is THIS

I want to integrate the updater in my mod, so I've followed the guide and setup the fabric.mod.json and build.gradle. Sadly, adding the mod cause the updater to not work correctly. The scanning message at startup not appear, once in game the /modupdater command is not recognized and the dedicated screen in ModMenu stuck at Loading... This is the fabric.mod.json ``` { "schemaVersion": 1, "id": "earthtojavamobs", "version": "${version}", "name": "Earth2Java", "description": "Bring mobs from Minecraft Earth to Minecraft Java Edition.", "authors": [ "Slexom" ], "contact": { "homepage": "https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric", "issues": "https://github.com/Slexom/earth2java/issues" }, "license": "MIT License", "icon": "assets/earthtojavamobs/logo.png", "environment": "*", "entrypoints": { "main": [ "slexom.earthtojava.mobs.Earth2JavaMod" ], "client": [ "slexom.earthtojava.mobs.Earth2JavaClientMod" ] }, "mixins": [ "earthtojavamobs.mixins.json" ], "depends": { "fabricloader": ">=0.7.4", "fabric": "*", "minecraft": "1.16.1" }, "suggests": { "flamingo": "*" }, "custom": { "modupdater": { "strategy": "curseforge", "projectID": 398022 } } } ``` The released mod is [THIS](https://www.curseforge.com/minecraft/mc-mods/earth2java-fabric)
Author

seems like it now work fine. The mistery of Java...

seems like it now work fine. The mistery of Java...
This repo is archived. You cannot comment on issues.
No Label
No Milestone
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: TheBrokenRail/ModUpdater#7
No description provided.