Create: Dreams n' Desires

Create: Dreams n' Desires

2M Downloads

Stirling Engine issues on NeoForge 1.21.1

TenQWERTY opened this issue ยท 3 comments

commented

Fueled stirling engine refuses to work even if flywheel is placed
also shows visual glitches when placed down
attempting to place a flywheel using the ghost placement makes the game crash

Image
Image
Image

latest.log

crash-2025-04-15_16.13.06-client.txt

commented

Confirmed that this is consistent and will brick a world.

commented

I can confirm this is also happening; it bricks a world as whatever is placed must still be there, so the moment you load into the world, the crash occurs again. Thank god I had a backup from 6 minutes prior.

commented

In the meantime, here's KubeJS scripts to try and mitigate the damage this causes:
server_scripts:

// Remove the crafting recipe.
ServerEvents.recipes(event => event.remove({ id: 'create_d2d:crafting/stirling_engine' }));

// Hide in recipe viewers.
RecipeViewerEvents.removeEntriesCompletely('item', event => event.remove('create_d2d:stirling_engine'));

client_scripts:

// Even though this is hidden in recipe viewers, if someone managed to get their hands on one of these, there should be a warning about using it.
ItemEvents.modifyTooltips(event => event.modify('create_d2d:stirling_engine', tooltip => tooltip.insert(2, ['', Text.red('DO NOT USE - BRICKS THE WORLD').bold()])));