Skip to content

Instantly share code, notes, and snippets.

View TelepathicGrunt's full-sized avatar
🦎
Just chilling around!

TelepathicGrunt TelepathicGrunt

🦎
Just chilling around!
View GitHub Profile

What are mixins?

Mixins are a way to inject code or change the minecraft source code directly and should be use with caution. If you can do a PR to Forge or use an event, try those first. If all else fails, then mixins may be a good option to look into. Here are some resources for mixins:

Now, I'll be honest, the official mixin doc is kind of terrible to learn from for most people. It's extremely dense and and really only helps people who already knows in-depth bytecode and stuff. But most modders aren't like that and just wants to do small stuff lol. But I'll give you the run-down here. There's a few kinds of mixins that you will encounter quite often.

Gson gson = new GsonBuilder().setPrettyPrinting().create();
// Will print the stuff into the runs/config folder
try {
for(Map.Entry<RegistryKey<StructureProcessorList>, StructureProcessorList> processorListEntry : BuiltinRegistries.STRUCTURE_PROCESSOR_LIST.getEntries()){
if(!processorListEntry.getKey().getValue().getNamespace().equals(RepurposedStructures.MODID)) continue;
for(StructureProcessor processorEntry : processorListEntry.getValue().getList()) {
String filePath = FabricLoader.getInstance().getConfigDir()+"\\processor_list\\"+processorListEntry.getKey().getValue().getPath()+".json";
public class StackedBubbleRoomsCarver extends CaveWorldCarver
{
public StackedBubbleRoomsCarver(Function<Dynamic<?>, ? extends ProbabilityConfig> deserialize)
{
super(deserialize, 256); // The 256 is the maximum height that this carver can cave to
}