GTM Extended Features 2.4.0
Curse Maven Snippet
What's new
2.4.0 Changelog
============ Main Changes ============
AFRs (Advanced Fusion Reactors) and TIERED_PARALLEL (also with TIERED_TOOLTIP) were removed due to balance concerns
Greenhouse recipe times were reduced, normal recipes now takes 16 seconds, and boosted recipes takes 12.5s
Added the Large Gas Collector [LGC]

Synthesis Vessel structure has been changed, has its own shapeInfo to reflect coil usage and now has heat vents

New machine: Configurable Cleaning Maintenance Hatch
Basically a configurable maintenance hatch for cleanroom recipes

Cloud Transmission Database:
Renamed to Matrix Data Relay
Complete structure overhaul
Image hosted here because curseforge width limit
============ Internal Changes ============
Custom Parallel use:
public static RecipeModifier MACHINE_PARALLEL(int parallels) {
if (parallels == 1) return RecipeModifier.NO_MODIFIER;
return (MetaMachine machine, GTRecipe recipe) -> {
int achievable = ParallelLogic.getParallelAmountWithoutEU(machine, recipe, parallels);
if (achievable <= 1) return ModifierFunction.IDENTITY;
return ModifierFunction.builder()
.modifyAllContents(ContentModifier.multiplier(achievable))
.durationMultiplier(2)
.parallels(achievable)
.build();
};
}
Old: MACHINE_PARALLEL.apply(n)New: MACHINE_PARALLEL(n)
MAX_CUSTOM_PARALLEL condition removed, by default the max value an int can take is 2147483647 (just 2^31-1)
Wireless Optical Transmitters/Receivers have been renamed to Wireless Optical Transmissors/Receptors
Range display visual feedback has been completly changed from the particles display, now it has a Dynamic Render display based on the max distance of each transmissor
ZPM and UV scan range have been modified, ZPM was 24 blocks, now it reaches 32 blocks, and UV instead of 32 now has 64 blocks, max allowed connections within range remains the same
Removed "OPTICAL_TAB" in favor of putting most singleblock features inside a single creative tab
All Relations
- All Relations
- Embedded Library
- Optional Dependency
- Required Dependency
- Tool
- Incompatible
- Include

