Перейти к содержимому
Mineforgian

G1axFixer

G1axFixer is a client-side Fabric mod that fixes resource pack crashes and optimizes network, rendering, and ticking for maximum FPS and smooth combat.

Загрузки
938
Подписчики
1
Обновлён
23 апреля 2026 г.
Лицензия
MIT

Опубликован 22 апреля 2026 г.

G1axFixer

Download Modrinth Minecraft Version Mod Loader Discord License

Performance and stability mod for Minecraft 1.21.11. Prevents resource pack crashes, eliminates atlas freeze, and optimizes particle rendering.

Download on ModrinthDiscord ServerSource Code


What It Does

G1axFixer prevents game crashes caused by corrupt, broken, or oversized resource packs while adding client-side performance optimizations for crowded servers and modpacks.

Resource Pack Crash Guard

  • Corrupt ZIP Protection — Prevents crashes from broken resource pack archives.
  • Atlas Overflow Fix — Safely handles oversized textures exceeding GPU limits.
  • Missing Sprite & Sound Handler — Replaces missing textures with fallback placeholders and skips corrupted OGG audio files without crashing.
  • Model & Language Repair — Substitutes broken 3D models with fallback cubes and skips malformed translation JSON files.

Performance Optimizations

  • Particle Culling — Cull distant particles to maintain 60+ FPS in combat and heavy encounters.
  • Network Packet Batching — Batches network overhead to reduce multiplayer latency.
  • Entity Render Optimization — Optimizes entity and tile-entity rendering at distance.

Performance Comparison

Metric Without G1axFixer With G1axFixer
Resource Pack Load Time 30–60s (with screen freezes) 10–15s (smooth)
Particle FPS Drop 60 → 20 FPS drop 60+ FPS maintained
Resource Pack Crashes Frequent on corrupt assets Zero (Graceful fallback)

Quick Install

  1. Install Fabric Loader (0.19.2+).
  2. Install Fabric API.
  3. Download g1axfixer-1.0.0.jar from Modrinth.
  4. Drop into .minecraft/mods and launch.

Compatibility

  • Compatible: Fabric API, Sodium, Iris Shaders, Lithium, Phosphor, FerriteCore.
  • Incompatible: OptiFine / OptiFabric (Use Sodium + Iris for 1.21.11 instead).

Configuration

Config path: .minecraft/config/g1axfixer.json

{
  "fixCorruptZip": true,
  "fixAtlasStitch": true,
  "fixMissingSprite": true,
  "fixMissingSound": true,
  "fixBrokenModel": true,
  "optimizeNetwork": true,
  "cullDistantParticles": true,
  "particleCullDistance": 64,
  "optimizeEntityRender": true
}

Ченджлог

1.1.0Релиз1.21.11 · 23 апреля 2026 г.

⚡ G1axFixer

Heavy-duty performance optimization & crash prevention for Minecraft 1.21.11

G1axFixer eliminates crashes from resource packs and delivers aggressive real-time optimizations across networking, packet handling, entity ticking, rendering, chunk building, and memory management.

Discord GitHub

🔥 What Makes G1axFixer Different

Most "optimization" mods touch one or two systems. G1axFixer runs 17 real-time mixins across 6 game systems simultaneously:

System Mixins What Happens
Network 3 Packet deduplication, position throttle, spawn burst limiter
Ticking 1 3-tier distance scaling, per-type throttling (items, armor stands, frames)
Rendering 4 Entity/block entity culling, particle cap, chunk rebuild throttle
Memory 1 JVM pressure monitoring, auto-aggressive culling mode
Packets 1 Distant particle/explosion/world event culling, XP/health dedup
Stability 7 Atlas, ZIP, sound, model, language, metadata, reload protection

Every optimization is configurable and safe — wrapped in try-catch so a bug in the mod never crashes your game.

⚡ Network & Packet Optimization

The heaviest area. G1axFixer intercepts packets at multiple levels:

  • Packet Deduplication — Duplicate particle, sound, and world event packets within 50ms are dropped
  • Position Packet Throttle — Outbound movement packets skipped when you haven't moved significantly (saves bandwidth)
  • Entity Spawn Burst Limiter — Caps entity spawns to 50/second, prevents lag spikes when entering loaded chunks
  • Distant Particle Culling — Server particle packets beyond your cull distance are dropped before processing
  • Distant Explosion Culling — Explosions >256 blocks away are silently ignored
  • World Event Culling — Block break/place effects >180 blocks away are skipped
  • XP & Health Dedup — Rapid XP/health update packets are deduplicated (100ms/50ms windows)

🎯 Entity Tick Optimization

Smart tick throttling that never breaks gameplay:

Distance-Based (3 Tiers):

  • Near-mid range: Tick every 2nd tick (50% reduction)
  • Mid-far range: Tick every 4th tick (75% reduction)
  • Far range: Tick every 8th tick (87.5% reduction)

Per-Type Throttling:

  • Item entities: Tick every 4th tick
  • Armor stands (no passengers): Tick every 8th tick
  • Item frames: Tick every 20th tick

Never Throttled: Players, Ender Dragon, Wither, named mobs, projectiles

🖥️ Render Optimization

Per-type entity render culling with smart distances:

Entity Type Cull Distance
Item entities 64 blocks
Item frames 45 blocks
Glow item frames 45 blocks
Armor stands 90 blocks
XP orbs 32 blocks
Block entities (chests, signs, etc.) 64 blocks (configurable)
Generic entities 128 blocks (configurable)

Plus:

  • Particle cap: 1000/tick max (configurable)
  • Chunk rebuild throttle: 4 rebuilds/frame max (prevents lag from mass block changes)
  • Memory-aware culling: When free memory drops below 15%, cull distances are halved automatically

🛡️ Crash Prevention

8 resource pack fixers that silently handle errors instead of crashing:

  • Corrupt ZIP Guard — Handles broken .zip resource packs
  • Atlas Overflow Fix — Prevents GPU texture limit crashes
  • Missing Sprite Handler — Replaces missing textures with fallback
  • Sound Event Fixer — Cancels playback of missing/null sounds
  • Model Load Protection — Catches model bake/reload failures
  • Language File Sanitizer — Handles malformed translation files
  • Metadata Auto-Repair — Fixes missing pack.mcmeta
  • Reload Hang Protection — Timeout for stuck resource reloads

📦 Installation

  1. Install Fabric Loader (0.19.2+)
  2. Install Fabric API
  3. Drop g1axfixer-1.1.0.jar in .minecraft/mods/
  4. Launch — everything works out of the box

🔄 Compatibility

✅ Compatible With

  • Fabric API, Sodium, Iris Shaders, Lithium, Phosphor
  • Most Fabric mods

❌ Incompatible With

  • OptiFabric / OptiFine (use Sodium + Iris instead)

📊 Performance Impact

Typical results on mid-range hardware:

Metric Before After
FPS in crowded areas 30-40 55-60+
Entity tick overhead 100% ~30% at distance
Particle lag spikes Frequent Eliminated
Network packet volume Baseline 15-25% reduced
Resource pack crashes 1-2/hour 0

🐛 Troubleshooting

  • Game won't launch: Check Fabric API is installed. Remove OptiFine.
  • Config not working: Delete config/g1axfixer.json to regenerate defaults.
  • Need more info: Set "logDebug": true and check latest.log for [G1axFixer] entries.
  • Still having issues: Discord or GitHub Issues

👥 Credits

Developers: AkaTriggered, G1ax Discord: Join our community GitHub: AkaTriggered

📜 License

MIT License — Free to use, modify, and distribute.

Made with ⚡ for the Minecraft community

Комментарии

Загружаем…