From ed6422517ad4d17ec114a97320dbdff7a8244630 Mon Sep 17 00:00:00 2001 From: Skullian <133133667+Skullians@users.noreply.github.com> Date: Mon, 30 Dec 2024 19:37:55 +0000 Subject: [PATCH] Update Fabric docs to use correct mod ID (#52) Previously the documentation for the [Fabric](https://fabricmc.net/) Cloud API implementation stated that developers should depend on cloud with a mod-id of `cloud` in their `fabric.mod.json` (https://cloud.incendo.org/minecraft/modded/fabric/#fabricmodjson), however we were informed that the correct mod ID is `cloud-fabric`. This is a simple PR that fixes that. --- docs/minecraft/modded/fabric.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/minecraft/modded/fabric.md b/docs/minecraft/modded/fabric.md index 9d5600c..745ce80 100644 --- a/docs/minecraft/modded/fabric.md +++ b/docs/minecraft/modded/fabric.md @@ -43,7 +43,7 @@ Merge the following into your `fabric.mod.json`: ```json { "depends": { - "cloud": "*" + "cloud-fabric": "*" } } ```