From b1126d462443a01afe03ae63a116a88b6bf13a1a Mon Sep 17 00:00:00 2001 From: jchung01 Date: Thu, 11 Apr 2024 14:16:47 -0700 Subject: [PATCH] Update README, lang --- README.md | 5 +++++ .../mod/acgaming/universaltweaks/config/UTConfigTweaks.java | 2 +- src/main/resources/assets/universaltweaks/lang/en_us.lang | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa227008..e044be0a 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,10 @@ All changes are toggleable via config files. * **Disable Wither Targeting AI:** Disables withers targeting animals * **Easy Breeding:** Enables easy breeding of animals by tossing food on the ground * **End Portal Parallax:** Re-implements parallax rendering of the end portal from 1.11 and older +* **Entity Radius Check** + * These tweaks are only effective if you have mod(s) that increase `World.MAX_ENTITY_RADIUS`! (Lycanites Mobs, Advanced Rocketry, Immersive Railroading, etc.) + * Reduces the search size of various AABB functions for specified entity types to improve performance + * Reduces size of collision checks for most vanilla entity types to improve performance * **Explosion Block Drop Chance:** Determines the numerator of the block drop formula on explosions * **Falling Block Lifespan:** Determines how long falling blocks remain in ticks until they are dropped under normal circumstances * **Fast Dye Blending:** Replaces color lookup for sheep to check a predefined table rather than querying the recipe registry @@ -172,6 +176,7 @@ All changes are toggleable via config files. * **No Golems:** Disables the manual creation of golems and withers * **No Leftover Breath Bottles:** Disables dragon's breath from leaving off empty bottles when a stack is brewed with * **No Night Vision Flash:** Disables the flashing effect when the night vision potion effect is about to run out +* **No Pathfinding Chunk Loading:** Disables mob pathfinding from loading new/unloaded chunks when building chunk caches to improve performance * **No Potion Shift:** Disables the inventory shift when potion effects are active * **No Portal Spawning:** Prevents zombie pigmen spawning from nether portals * **No Redstone Lighting:** Disables lighting of active redstone, repeaters, and comparators to improve performance diff --git a/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java b/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java index 0bbb7906..4cdeae30 100644 --- a/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java +++ b/src/main/java/mod/acgaming/universaltweaks/config/UTConfigTweaks.java @@ -1722,7 +1722,7 @@ public static class PerformanceCategory @Config.RequiresMcRestart @Config.Name("No Pathfinding Chunk Loading") - @Config.Comment("Prevents mob pathfinding from loading new/unloaded chunks when building chunk caches") + @Config.Comment("Disables mob pathfinding from loading new/unloaded chunks when building chunk caches") public boolean utPathfindingChunkCacheFixToggle = true; @Config.RequiresMcRestart diff --git a/src/main/resources/assets/universaltweaks/lang/en_us.lang b/src/main/resources/assets/universaltweaks/lang/en_us.lang index bdd6c3a9..6a21d75b 100644 --- a/src/main/resources/assets/universaltweaks/lang/en_us.lang +++ b/src/main/resources/assets/universaltweaks/lang/en_us.lang @@ -128,5 +128,6 @@ cfg.universaltweaks.tweaks.misc.pickupnotification=Pickup Notification cfg.universaltweaks.tweaks.misc.smoothscrolling=Smooth Scrolling cfg.universaltweaks.tweaks.misc.stg=Swing Through Grass cfg.universaltweaks.tweaks.misc.toastcontrol=Toast Control +cfg.universaltweaks.tweaks.performance.entityradiuscheck=Entity Radius Check cfg.universaltweaks.tweaks.world.chunkgenlimit=Chunk Gen Limit cfg.universaltweaks.tweaks.world.dimensionunload=Dimension Unload