promotional bannermobile promotional banner

GTM Extended Features

An addon that adds QoL features into Gregtech modern
Back to Files

GTM Extended Features 2.4.0

File nameextendedfeatures-2.4.0.jar
Uploader
ArgxmentArgxment
Uploaded
Aug 14, 2026
Downloads
301
Size
289.6 KB
Mod Loaders
Forge
File ID
8650543
Type
R
Release
Supported game versions
  • 1.20.1

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:gtm-extended-features-1604172:8650543")

Learn more about Curse Maven

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]

image

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

image

New machine: Configurable Cleaning Maintenance Hatch

Basically a configurable maintenance hatch for cleanroom recipes

image

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

width problem again sigh

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

This mod has no additional files