1.3.3.1
Compatibility
Required content
Changes
ComputerCraft peripherals — RCS thruster, power block and guidance warhead are now usable from CC:Tweaked computers (no ComputerCraft required to run the mod; integration auto-disables when CC is absent):
aero_rcs— thrust get/set, thrust index, creative mode, angled-nozzle mode, live thrust/nozzle/fuel/electric status, sync/warhead binding.aero_power— yaw/pitch limits and seat height.aero_warhead— target acquisition, search mode, guidance mode, PID tuning.- Cross-mod Java API — new
dev.simulated_team.aero_reformation.apipackage for other mods:RcsThrusterApi,PowerBlockApi,GuidanceWarheadApi(allLevel+BlockPosbased, server-safe, auto-synced). - RCS thruster public getters —
getThrustIndex,setThrustIndex,getThrustOptions,getActiveNozzleMask,getCurrentThrustPN,isFuelAvailable,isElectricMode. - Automated deploy —
./gradlew buildnow auto-cleans and deploys the built jar into the game mods folder (single latest version only). - Safety — all ComputerCraft registration is isolated and try/catch guarded; the mod runs unchanged without CC installed.
Full API reference: see docs/api.md.
Optional dependencies
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:EYJ4oFpq:A7c3ISnz"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:EYJ4oFpq:A7c3ISnz"
}

