File Details
ESO_1.18.2_1.09.jar
- R
- May 21, 2026
- 25.67 KB
- 105
- 1.18.2
- Forge
File Name
ESO_1.18.2_1.09.jar
Supported Versions
- 1.18.2
Curse Maven Snippet
📝 Easy Server OPT (ESO) - Changelog
This update focuses exclusively on refactoring the underlying Event Handling architecture to strictly follow Forge Mod Loader standards. All server optimization features and logic remain 100% unchanged.
🔄 Refactoring Changes
- Automated Event Registration: Replaced manual
MinecraftForge.EVENT_BUS.register()calls with Forge's@Mod.EventBusSubscriberclass-level annotations across the mod. - Static Event Methods: Converted all
@SubscribeEventmethods topublic staticto comply with the automatic subscriber requirement. - Config Separation: Moved all configuration loading events (Load/Reload) out of the main mod class and into
ModConfig.java, utilizing theMODevent bus for cleaner architecture and separation of concerns.
🚀 Features Status
All optimization mechanics continue to work flawlessly in the background exactly as before:
- ✅ TPS-based auto-optimization (Runs silently every 2 seconds).
- ✅ Aggressive XP merging and chunk mob limits (40 max).
- ✅ Server sleep/tick-pause on empty.
- ✅ Smart Villager AI freezing.
- ✅ All
/optcommands.