Skip to content

Commit

Permalink
Update README, lang
Browse files Browse the repository at this point in the history
  • Loading branch information
jchung01 committed Apr 11, 2024
1 parent 34f5382 commit b1126d4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/assets/universaltweaks/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b1126d4

Please sign in to comment.