Random Optimization

Quick rating

Random Optimization

No reviews yet

This mod improves Minecraft's performance and fix serval bugs.

No Theme
No Genre
QoL & Tweaks
Bug Fixes
Performance & Optimization
Mod Loaders
Forge
NeoForge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Optional
Server Optional

About

Project Details

Type
Mod
License
GNU Lesser General Public License v3.0 only
Latest Version
randomoptimization-1.7.2-all.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Random Optimization

Description

This mod implements the following features to significantly optimize game performance and fix existing bugs. All features can be toggled via the configuration file.

  • Fixes MC-249136(1.20.1) / Improve structure location performace(1.21.1): This bug causes severe server lag (hangs) when players attempt to locate Buried Treasure (most notably), or when opening/breaking chests containing maps, or using the /locate command. This mod employs simple checks to drastically reduce the enumeration required during structure searching, thereby optimizing speed.
  • (Default Disabled in v1.6+)Deterministic Item Drops: The mod de-randomizes the spawn position of dropped items. This makes designing Redstone contraptions much simpler and easier. Additionally, by reducing the usage of RNG (Random Number Generation), it improves game performance.
  • Optimized Resource/Data Pack Loading: Improves the loading speed of Resource Packs and Data Packs. The mod Builds a compact index for compressed Resource Packs and Data Packs on first access, replacing repeated full-ZIP scans during namespace discovery and recursive resource listing. This reduces reload time and temporary allocations, especially for large packs and modpacks containing many assets.
  • Boat Fall Damage Fix: Fixes an issue where boats take fall damage when falling from specific heights. This aligns behavior with the MC-Wiki description and newer Minecraft versions, while also improving performance.
  • DFU Optimization: Defers (lazy loads) the DataFixerUpper (DFU) to improve game startup speed.

Compatibility & Replacements

This mod completely or partially replaces the functionality of the following mods:

  • MC-249136 Fix: This mod fundamentally optimizes the structure search algorithm. In contrast, other mods often move the task to a separate thread to mask the lag. While technically not conflicting, using this mod usually provides sufficient optimization, making the other mod unnecessary. If you strictly require asynchronous loading, Async Locator is recommended instead, as it supports more structures and has a better implementation.
  • Shipwreck/Buried Treasure Fixes: This mod shares the same essential optimization logic for MC-249136. There is no need to use those mods if this one is installed.
  • Vertical Fall: This mod completely replaces all functionality of this mod.
  • Drizzleproof: Partially replaced. If you only need deterministic item drops, you do not need Drizzleproof. However, if you require granular configuration for entity mechanics, please continue using Drizzleproof.
  • Quick Pack: When this mod's compressed-pack index is enabled, Quick Pack's replacement resource-pack implementation is automatically suppressed and this mod's faster index is used instead.
  • ModernFix: When this mod's compressed-pack index is enabled, ModernFix's overlapping ZIP resource-pack index is automatically suppressed. Other ModernFix resource-pack optimizations and all unrelated features remain enabled.
  • Boat Break Fix: This mod completely replaces the functionality of this mod.
  • DFU Loading Optimizations (e.g., LazyDFU): This mod completely replaces the functionality of these mods.

Compatibility & License

This mod has good compatibility with other mods and has no known incompatibilities. It is open-source under the LGPL-3.0 license.

Credits

  • The MC-249136 by bytzo, which inspired me to speed up the structure locate.

Random Optimization

Description

This mod implements the following features to significantly optimize game performance and fix existing bugs. All features can be toggled via the configuration file.

  • Fixes MC-249136(1.20.1) / Improve structure location performace(1.21.1): This bug causes severe server lag (hangs) when players attempt to locate Buried Treasure (most notably), or when opening/breaking chests containing maps, or using the /locate command. This mod employs simple checks to drastically reduce the enumeration required during structure searching, thereby optimizing speed.
  • (Default Disabled in v1.6+)Deterministic Item Drops: The mod de-randomizes the spawn position of dropped items. This makes designing Redstone contraptions much simpler and easier.
  • Optimized Resource/Data Pack Loading: Improves the loading speed of Resource Packs and Data Packs. The mod Builds a compact index for compressed Resource Packs and Data Packs on first access, replacing repeated full-ZIP scans during namespace discovery and recursive resource listing. This reduces reload time and temporary allocations, especially for large packs and modpacks containing many assets.
  • Boat Fall Damage Fix: Fixes an issue where boats take fall damage when falling from specific heights. This aligns behavior with the MC-Wiki description and newer Minecraft versions, while also improving performance.
  • DFU Optimization: Defers (lazy loads) the DataFixerUpper (DFU) to improve game startup speed.

Compatibility & Replacements

This mod completely or partially replaces the functionality of the following mods:

  • MC-249136 Fix: This mod fundamentally optimizes the structure search algorithm. In contrast, other mods often move the task to a separate thread to mask the lag. While technically not conflicting, using this mod usually provides sufficient optimization, making the other mod unnecessary. If you strictly require asynchronous loading, Async Locator is recommended instead, as it supports more structures and has a better implementation.
  • Shipwreck/Buried Treasure Fixes: This mod shares the same essential optimization logic for MC-249136. There is no need to use those mods if this one is installed.
  • Vertical Fall: This mod completely replaces all functionality of this mod.
  • Drizzleproof: Partially replaced. If you only need deterministic item drops, you do not need Drizzleproof. However, if you require granular configuration for entity mechanics, please continue using Drizzleproof.
  • Quick Pack: When this mod's compressed-pack index is enabled, Quick Pack's replacement resource-pack implementation is automatically suppressed and this mod's faster index is used instead.
  • ModernFix: When this mod's compressed-pack index is enabled, ModernFix's overlapping ZIP resource-pack index is automatically suppressed. Other ModernFix resource-pack optimizations and all unrelated features remain enabled.
  • Boat Break Fix: This mod completely replaces the functionality of this mod.
  • DFU Loading Optimizations (e.g., LazyDFU): This mod completely replaces the functionality of these mods.

Compatibility & License

This mod has good compatibility with other mods and has no known incompatibilities. It is open-source under the LGPL-3.0 license.

Credits

  • The MC-249136 by bytzo, which inspired me to speed up the structure locate.

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~65,000
Total Downloads
CurseForge
<1,000
Modrinth
~65,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works