Dennis C
Dennis C
This leads to issues when adding source sets without an explicit group with the group ID being declared after the runs block: https://github.com/neoforged/NeoForge/blob/a5c036320dfeb9ddb7f84243de4683c146ccba5a/projects/neoforge/build.gradle#L231
The methods for adding multiple source sets via var-arg or `Iterable` to a `RunSourceSets` are incorrectly called `add()` instead of `addAll()`. This causes a regression from previous versions where the...
This PR makes it possible for mods to add custom `FeatureFlag`s to the vanilla feature flag system. Since the `FeatureFlagRegistry` holding the flags is set in stone long before mods...
This PR adds an event to allow registering texture atlases for inclusion in the `AtlasSet` held by the `ModelManager` such that the atlas can be used with `Material` and other...
This PR moves NeoForge's resource/data pack to the first position in the merged pack such that mods can override resources provided by NeoForge regardless of mod load order.
**Minecraft Version:** 1.21.1 **NeoForge Version:** 21.1.31 **Steps to Reproduce:** 1. Add a lot of HUD layers (in my test I used over 90, the real-world case in ATM10 ends up...
This PR relaxes the coherence checks on extensible enums to allow a client/server with an extensible enum without additional entries to connect to a server/client with the respective enum not...
## Version Information `Minecraft: 1.21.1` `NeoForge: 21.1.54` `Iron Chests: 16.0.7` ## Report Information Iron Chests uses a [`DirectoryLister`](https://github.com/progwml6/ironchest/blob/1cdb753b75847d67b928c0ed8d168c2f196c1165/src/generated/resources/assets/minecraft/atlases/chests.json) sprite source to add its chest textures to the chest atlas. The...
## Description To optimize packet size, Create's contraptions send the update tag of the contained BEs to the client instead of the full BE tag. Since loading a contraption from...
This PR adds a system property to allow disabling the validation in Blaze3D without setting `SharedConstants.IS_RUNNING_IN_IDE` to false and therefore disabling all other features associated with it. The primary use...