Mod
Flywheel Crash Fix
No reviews yet
Prevents a game-crashing `NullPointerException` in Create's Flywheel rendering engine when a Frogport or Chain Conveyor encounters a package item with no registered visual model.
Does not follow a specific thematic focus apart from vanilla Minecraft.
Used for mods with little to no gameplay elements.
Addresses and fixes known bugs and issues.
Adds client-side tools and features to enhance the user experience.
Adds extra features or content to an existing mod.
Forge is a popular mod loader for versions 1.1+ of Minecraft.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
Flywheel Crash Fix
Flywheel Crash Fix is a lightweight client-side Forge mod for Minecraft 1.20.1 that eliminates a NullPointerException crash triggered by Create's visual rendering system.
The Problem
When the Create mod renders its machines using the Flywheel rendering engine, the FrogportVisual and ChainConveyorVisual classes iterate over every item a Frogport or Chain Conveyor is currently handling. For each item they attempt to look up a registered visual model. If no model is registered for that item — which happens with package items from Create Mobile Packages that failed model registration — Flywheel receives a null partial model reference and throws a NullPointerException, immediately crashing the game client.
The Fix
This mod injects three Mixins into the Flywheel/Create rendering pipeline:
| Mixin | What it does |
|---|---|
AbstractBEVisualAccessorMixin |
Exposes the protected level field on AbstractBlockEntityVisual so downstream mixins can safely read it. |
FrogportVisualMixin |
Wraps the item-rendering loop in FrogportVisual with a null-check guard; skips any item whose visual model lookup returns null. |
ChainConveyorVisualMixin |
Applies the same null-check guard to ChainConveyorVisual's item-rendering loop. |
The fix is purely defensive — if models are correctly registered the code path is unchanged. No gameplay behaviour, item behaviour, or server logic is affected.
Compatibility
| Requirement | Version |
|---|---|
| Minecraft | 1.20.1 |
| Forge | 47.4.16+ |
| Create | 6.0.8+ |
| Flywheel | 1.0.5 |
This mod is client-side only and does not need to be installed on a dedicated server.
Why Does This Happen?
Create Mobile Packages registers visual models for its package items during the Flywheel model-registration phase. Under certain mod-loading orders or when model registration is interrupted, the registration fails silently and leaves a null entry in the model registry. Flywheel does not guard against this, so the first time a Frogport or Chain Conveyor tries to render one of those items the JVM throws and the game crashes.
The permanent fix is for Create Mobile Packages to harden its own model registration. Until that upstream fix is released, this mod provides a safe workaround.
Author
TheDarkAce — created as a targeted fix for the All Of Create + modpack.
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources