From 846b98275454401bf889edba8508f9d6d4f1c08d Mon Sep 17 00:00:00 2001 From: Min-CandyMC Date: Tue, 1 Sep 2026 22:19:04 +0200 Subject: [PATCH] Fixed import for >= 26.1 In Setup.md it, only gave the tutorial for with the obfuscated variation. 26.1+ just uses "implementation" instead of "modImplementation". --- docs/owo/setup.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/owo/setup.md b/docs/owo/setup.md index 08c1458..91aec3e 100644 --- a/docs/owo/setup.md +++ b/docs/owo/setup.md @@ -23,6 +23,9 @@ Then, declare the dependency inside your `dependencies` block and as well as the === "build.gradle (Fabric)" ```groovy dependencies { + // For >= 26.1 + implementation "io.wispforest:owo-lib:${project.owo_version}" + // For < 26.1 modImplementation "io.wispforest:owo-lib:${project.owo_version}" include "io.wispforest:owo-sentinel:${project.owo_version}" }