Crude Burner only produces as much RPM as a regular furnace despite using the Blast Furnace in its recipe
hollowstrawberry opened this issue ยท 4 comments
It's 16k SU while a blast furnace produces 32k SU. Given that the fluid burner is more "advanced" it makes sense to me that it would be faster than a regular furnace just as the blast furnace.
Creators-of-Create/Create#2089 Was approved
On inspection it seems the stress capacity multiplier is hardcoded in the Create mod: https://github.com/Creators-of-Create/Create/blob/12bfc78443010dc25910e9f286431bd660f59e30/src/main/java/com/simibubi/create/content/contraptions/components/flywheel/engine/FurnaceEngineTileEntity.java#L28
One could work around this by injecting code either at that function or at refreshWheelSpeed, assuming that's possible: https://github.com/Creators-of-Create/Create/blob/12bfc78443010dc25910e9f286431bd660f59e30/src/main/java/com/simibubi/create/content/contraptions/components/flywheel/engine/EngineTileEntity.java#L93