Skip to content

Commit

Permalink
Remove Thaumic Wonders Memory Leak Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Mar 15, 2024
1 parent 3356302 commit e02544a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 39 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -754,11 +754,6 @@ public static class ThaumicWondersCategory
@Config.Name("Duplication Fixes")
@Config.Comment("Fixes various duplication exploits")
public boolean utDuplicationFixesToggle = true;

@Config.RequiresMcRestart
@Config.Name("Memory Leak Fix")
@Config.Comment("Fixes a client-side memory leak when wearing Void Fortress armor")
public boolean utMemoryLeakFixToggle = true;
}

public static class TheFarlandersCategory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public List<String> getMixinConfigs()
configs.add("mixins.mods.roost.json");
configs.add("mixins.mods.storagedrawers.client.json");
configs.add("mixins.mods.thaumcraft.entities.client.json");
configs.add("mixins.mods.thaumicwonders.client.json");
}
// COMMON
configs.add("mixins.mods.aoa3.json");
Expand Down Expand Up @@ -105,8 +104,6 @@ public boolean shouldMixinConfigQueue(String mixinConfig)
return Loader.isModLoaded("storagedrawers");
case "mixins.mods.thaumcraft.entities.client.json":
return Loader.isModLoaded("thaumcraft");
case "mixins.mods.thaumicwonders.client.json":
return Loader.isModLoaded("thaumicwonders") && UTConfigMods.THAUMIC_WONDERS.utMemoryLeakFixToggle;
}
}
switch (mixinConfig)
Expand Down

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/mixins.mods.thaumicwonders.client.json

This file was deleted.

0 comments on commit e02544a

Please sign in to comment.