SuperFactoryManager icon indicating copy to clipboard operation
SuperFactoryManager copied to clipboard

Nether star generator into flux accessor setup is laggy?

Open TeamDman opened this issue 5 months ago • 0 comments

Image Image Image

https://github.com/JDKDigital/generatorgalore/blob/05db2239665f24f186dbb36347a971ba392c7f24/src/main/java/cy/jdkdigital/generatorgalore/common/block/entity/GeneratorBlockEntity.java#L63 https://github.com/JDKDigital/generatorgalore/blob/05db2239665f24f186dbb36347a971ba392c7f24/src/main/java/cy/jdkdigital/generatorgalore/GeneratorGalore.java#L114 https://github.com/JDKDigital/generatorgalore/blob/05db2239665f24f186dbb36347a971ba392c7f24/src/main/java/cy/jdkdigital/generatorgalore/cap/ControlledEnergyStorage.java#L5

Pack: All the Mods 10-4.4 Generator Galore: 1.21.1-1.5.0 Interesting note, disabling the fuel input so the gens run dry also brings the energy transfer (which still runs, not disabled, just nothing to transfer) down substantially Image

https://discord.com/channels/967118679370264627/967119184209264790/1398790260594442250

Seems likely that the flux accessor is the culprit considering that the nether star generator is dead simple energy handler capability, 150x insertion operations could be tripping it up. Flux accessor is from applied flux

https://github.com/GlodBlock/ExtendedAE/blob/0f97b6a956f0f0f036d9a6fcfcda8d2fcf0ebc3f/src/main/java/com/glodblock/github/appflux/common/tileentities/TileFluxAccessor.java#L79-L85

https://github.com/GlodBlock/ExtendedAE/blob/0f97b6a956f0f0f036d9a6fcfcda8d2fcf0ebc3f/src/main/java/com/glodblock/github/appflux/common/caps/NetworkFEPower.java#L15

The flux accessor is tied to the AE logic of storage cells and stuff, so much heavier than a simple increment on a field in an energy handler

TeamDman avatar Jul 26 '25 22:07 TeamDman