Merged
Conversation
…ation gear; refactor mixing recipes
Closed
MathisGredt
approved these changes
Nov 11, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements to the development workflow and item tagging conventions, focusing on better integration with Forge tags, more organized item categorization, and enhanced VSCode support for running and building the project. The changes streamline how items are tagged and referenced in recipes, and add configuration files for easier development and testing.
Development Environment Improvements:
.vscode/launch.jsonwith multiple Java launch configurations for running the client, data generator, game test server, and server, each with appropriate VM arguments, environment variables, and pre-launch Gradle tasks for streamlined development and testing..vscode/tasks.jsondefining Gradle-based shell tasks to prepare the environment for each launch configuration, improving build automation and consistency.Item Tagging and Recipe Consistency:
CNItems.javato use more precise Forge conventions (e.g.,dusts/uranium,dusts/coal,armors/helmets, etc.), improving compatibility and organization of item categories. [1] [2] [3] [4] [5] [6]CNMixingRecipeGen.javato use the new item tags in recipe requirements, ensuring recipes reference the correct, standardized tags.Code Quality:
"unused"suppression from the@SuppressWarningsannotation inCNItems.java, improving code clarity.Bug Fixes:
BaseFireBlockMixin.javato reference the correct method name (getStateinstead of an obfuscated name), improving maintainability and compatibility.