Skip to content

Commit

Permalink
Remove Mute Ore Dictionary Errors tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed Feb 24, 2025
1 parent 1160540 commit 65b8ca5
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 37 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,6 @@ All changes are toggleable via config files.
* **Modern Knockback:** Backports 1.16+ knockback to 1.12: Knockback resistance is now a scale instead of a probability
* **More Banner Layers:** Sets the amount of applicable pattern layers for banners
* **Mute Advancement Errors:** Silences advancement errors
* **Mute Ore Dictionary Errors:** Silences ore dictionary errors
* **Mute Texture Map Errors:** Silences texture map errors
* **No Attack Cooldown:** Disables the 1.9 combat update attack cooldown
* **No Crafting Repair:** Disables crafting recipes for repairing tools
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2247,11 +2247,6 @@ public static class PerformanceCategory
@Config.Comment("Silences advancement errors")
public boolean utAdvancementCheckToggle = false;

@Config.RequiresMcRestart
@Config.Name("Mute Ore Dictionary Errors")
@Config.Comment("Silences ore dictionary errors")
public boolean utOreDictionaryCheckToggle = false;

@Config.RequiresMcRestart
@Config.Name("Mute Texture Map Errors")
@Config.Comment("Silences texture map errors")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ public class UTLoadingPlugin implements IFMLLoadingPlugin, IEarlyMixinLoader
put("mixins.tweaks.performance.dyeblending.json", () -> UTConfigTweaks.PERFORMANCE.utDyeBlendingToggle);
put("mixins.tweaks.performance.entityradiuscheck.lesscollisions.json", () -> UTConfigTweaks.PERFORMANCE.ENTITY_RADIUS_CHECK.utEntityRadiusCheckCategoryToggle && UTConfigTweaks.PERFORMANCE.ENTITY_RADIUS_CHECK.utLessCollisionsToggle);
put("mixins.tweaks.performance.entityradiuscheck.reducesearchsize.json", () -> UTConfigTweaks.PERFORMANCE.ENTITY_RADIUS_CHECK.utEntityRadiusCheckCategoryToggle && UTConfigTweaks.PERFORMANCE.ENTITY_RADIUS_CHECK.utReduceSearchSizeToggle);
put("mixins.tweaks.performance.oredictionarycheck.json", () -> UTConfigTweaks.PERFORMANCE.utOreDictionaryCheckToggle);
put("mixins.tweaks.performance.pathfinding.json", () -> UTConfigTweaks.PERFORMANCE.utPathfindingChunkCacheFixToggle);
put("mixins.tweaks.performance.prefixcheck.json", () -> UTConfigTweaks.PERFORMANCE.utPrefixCheckToggle);
put("mixins.tweaks.performance.redstone.json", () -> UTConfigTweaks.PERFORMANCE.utRedstoneLightingToggle);
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 65b8ca5

Please sign in to comment.