Skip to content

Home

gadget is a collection of tools meant to help debug mods by allowing you to inspect and change certain game features.

Setup

If you aren't in a developer environment, you can just download the mod from Modrinth or GitHub.

If you want to put gadget in your buildscript, however, you first just include the Wisp Forest repository:

build.gradle
repositories {
    maven { url 'https://maven.wispforest.io' }
}

And then declare your dependency the usual way:

dependencies {
    // modCompileOnly "io.wispforest:gadget:${project.gadget_version}" (1)
    modLocalRuntime "io.wispforest:gadget:${project.gadget_version}"
}
  1. If you need to use the gadget API (e.g. if you want to make a custom packet deserializer), uncomment this.
# https://maven.wispforest.io/io/wispforest/gadget/
owo_version=...

Last update: 2023-09-01