File Details
ThaumicAugmentation-1.12.2-2.1.14-api.jar
- R
- Jan 3, 2025
- 452.46 KB
- 13
- 1.12.2
- Forge
File Name
ThaumicAugmentation-1.12.2-2.1.14-api.jar
Supported Versions
- 1.12.2
Curse Maven Snippet
The following items have been deprecated for removal, and will be removed in the next non-patch (feature) release:
- IImpetusNode#init (see note at end)
- NodeHelper#validateOutputs (use NodeHelper#validate instead)
- EntityInOuterLandsEvent
- FluxRiftDestroyBlockEvent
- Both of these have corresponding events in Thaumcraft Fix that should be used instead
IImpetusNode#init is being removed due to its intended usage apparently being unsafe. The intended usage was to connect newly loaded nodes to the impetus graph in TileEntity#init, but apparently the World is not guaranteed to be available when this is called. This is not specified in the documention, and is instead only in a Forge issue that was closed as a wontfix. The way to connect impetus nodes is to now call NodeHelper#validate in the tick callback of your tile. Technically, only one end of any given connection has to do this, although the Impetus graph will not transfer Impetus over that link until this is done.

