Skip to content

Commit

Permalink
Remove entity tracker warning tweak
Browse files Browse the repository at this point in the history
Oddly specific, also caused a riot
  • Loading branch information
ACGaming committed Jul 24, 2024
1 parent 86f2b80 commit d158c62
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 40 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ All changes are toggleable via config files.
* **Improve Barrier Particle Display:** Causes Barrier Particles to always be displayed to players in Creative mode
* **Improve Language Switching Speed:** Improves the speed of switching languages in the Language GUI
* **Improve Server Connection Speed:** Improves the speed of connecting to servers by setting the InetAddress host name to the IP in situations where it can be represented as the IP address, preventing getHostFromNameService from being to be run
* **Improved Entity Tracker Warning:** Provides more information to addPacket removed entity warnings
* **Incurable Potions:** Excludes potion effects from being curable with curative items like buckets of milk
* **Infinite Music:** Lets background music play continuously without delays
* **Item Entities:** Enables the modification of item entity properties
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1530,11 +1530,6 @@ public static class MiscCategory
@Config.Comment("Disables the experience reward when smelting items in furnaces")
public boolean utSmeltingXPToggle = false;

@Config.RequiresMcRestart
@Config.Name("Improved Entity Tracker Warning")
@Config.Comment("Provides more information to addPacket removed entity warnings")
public boolean utImprovedEntityTrackerToggle = true;

@Config.Name("Offhand Improvement")
@Config.Comment("Prevents placing offhand blocks when blocks or food are held in the mainhand")
public boolean utOffhandToggle = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ public class UTLoadingPlugin implements IFMLLoadingPlugin, IEarlyMixinLoader
put("mixins.tweaks.misc.armorcurve.json", () -> UTConfigTweaks.MISC.ARMOR_CURVE.utArmorCurveToggle);
put("mixins.tweaks.misc.bannerlayers.json", () -> UTConfigTweaks.MISC.utBannerLayers != 6);
put("mixins.tweaks.misc.commands.seed.json", () -> UTConfigTweaks.MISC.utCopyWorldSeedToggle);
put("mixins.tweaks.misc.console.addpacket.json", () -> UTConfigTweaks.MISC.utImprovedEntityTrackerToggle);
put("mixins.tweaks.misc.incurablepotions.json", () -> UTConfigTweaks.MISC.INCURABLE_POTIONS.utIncurablePotionsToggle);
put("mixins.tweaks.misc.lightning.damage.json", () -> UTConfigTweaks.MISC.LIGHTNING.utLightningDamage != 5.0D || UTConfigTweaks.MISC.LIGHTNING.utLightningFireTicks != 8);
put("mixins.tweaks.misc.lightning.fire.json", () -> UTConfigTweaks.MISC.LIGHTNING.utLightningFireToggle);
Expand Down

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/mixins.tweaks.misc.console.addpacket.json

This file was deleted.

0 comments on commit d158c62

Please sign in to comment.