dwgx@blog:~$dwgx
> cd ../posts

Finallyabandoned: Another Mixin-Injection example mod

// created

Example mod based on MinecraftMixin

Finallyabandoned is an example mod built on MinecraftMixin, opened as a continuation of the Wasted line, meant specifically for trying out Mixin’s injection approaches. The name is blunt, and in the end it did get abandoned.

The focus for those few days was pinning down the boundaries between the injection annotations: @Inject splices logic into a target method, @Redirect intercepts a particular call and swaps in your own, and @Overwrite replaces the whole method outright. Which one to reach for in which scenario, and how far each can actually change things, all got worked out bit by bit in this repo.

There isn’t much in the code worth keeping around, it’s just a snapshot of the same round of exploration. I spun up several example repos back to back, tossing each one after I was done with it, and Finallyabandoned is where this line wraps up.

By this point I had the door to Mixin figured out. The repo is here.