promotional bannermobile promotional banner

Create Aeronautics: Mekanism Compatibility

Adds support for using Mekanism Digital Miners, Teleporters, and Dimensional Stabilizers on Create Aeronautics airships.

File Details

Create Aeronautics: Mekanism Compatibility 0.1.4

  • R
  • May 8, 2026
  • 65.43 KB
  • 12
  • 1.21.1
  • NeoForge

File Name

create_mekanism_compat-0.1.4.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

NeoForge

implementation "curse.maven:create-aeronautics-mekanism-compatibility-1536749:8055835"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

0.1.4

Mounted Digital Miner movement reliability pass.

  • Digital Miners now request chunk tickets for the miner's actual horizontal scan footprint around its projected world position.
  • Raised the default mounted miner ticket cap from 9 to 25 chunks so a radius-30 miner can keep its normal working area loaded while an airship crosses chunk boundaries.
  • Kept scan work bounded by the existing 16,384-position batch budget and 12 ms soft time budget; this change keeps needed chunks available without increasing per-pass scan work.
  • Preserved nearest-first chunk ordering so smaller custom ticket caps still prioritize the miner's current chunk and closest neighbors.

Algorithm notes:

  • Each scan tick projects the mounted Digital Miner's Sable sub-level position into the real world.
  • The chunk loader now derives the horizontal chunk footprint from globalX +/- radius and globalZ +/- radius, sorts those chunks by distance from the miner, and trims to digitalMinerMaxTicketChunks.
  • With the default radius-30 case, the 25-chunk cap covers the practical scan footprint while avoiding the full 81-chunk maximum.
  • Recent scan chunks are still considered after the current footprint, so custom higher caps can retain more trail history.

Research references used while choosing the scan shape: