Create TFMG: Network Fix

Fixes TFMG recipe fields not syncing over the network, causing JEI to display vat recipes without machine modules on dedicated servers.

File Details

tfmg_network_fix-1.0.1.jar

  • R
  • Apr 15, 2026
  • 4.94 KB
  • 279
  • 1.20.1
  • Forge

File Name

tfmg_network_fix-1.0.1.jar

Supported Versions

  • 1.20.1

Curse Maven Snippet

Forge

implementation fg.deobf("curse.maven:create-tfmg-network-fix-1513291:7930529")
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

  • Crash on startup with TFMG 1.0.2f — Mixin used @Inject targeting writeAdditional(FriendlyByteBuf) / readAdditional(FriendlyByteBuf) on IndustrialBlastingRecipe and VatMachineRecipe, but these methods are not declared in those classes — they are inherited from Create's ProcessingRecipe. Mixin could not find the injection target, causing MixinTransformerError.
  • Changed approach: instead of @Inject, mixin now directly overrides the inherited methods. This correctly adds the missing network serialization without requiring the target class to explicitly declare the methods.