Trunk/1.21.1#10
Open
zevatov wants to merge 3 commits into
Open
Conversation
Lothrazar
requested changes
May 15, 2026
| A Library/core mod built on the Minecraft & the Forge API [https://files.minecraftforge.net/](https://files.minecraftforge.net) | ||
|
|
||
| > [!WARNING] | ||
| > **Disclaimer:** This NeoForge 1.21.1 port was developed and compiled with the assistance of an AI agent. While the library successfully builds and runs alongside dependent mods, it has **not** been thoroughly tested across all possible edge cases. Proceed with caution. |
Owner
There was a problem hiding this comment.
This should not be in the readme. if you remove this and add it to the PR description instead then i can possibly merge this
Lothrazar
reviewed
May 15, 2026
| RenderType.CompositeState.builder() | ||
| .setShaderState(RENDERTYPE_LINES_SHADER) | ||
| .setLineState(new LineStateShard(OptionalDouble.of(2.5D))) | ||
| .setLineState(new LineStateShard(java.util.OptionalDouble.of(2.5D))) |
Owner
There was a problem hiding this comment.
lol wow AI does the dumbest things eh. oh this is already imported let me add the package anyway lol
Lothrazar
reviewed
May 15, 2026
| newVal = 0.9F - VANILLA; | ||
| } | ||
| else { | ||
| newVal = 1.0F + (1F / 16F) - VANILLA; //PATH BLOCKS etc are 1/16th downif MY feature turns this on, then do it |
Owner
There was a problem hiding this comment.
Pro tip dont let the dumb robots automatically delete every single comment it finds
Lothrazar
reviewed
May 15, 2026
| @@ -0,0 +1,7 @@ | |||
| package com.lothrazar.library; | |||
| import net.minecraft.world.level.block.Block; | |||
| public class Dummy { | |||
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 PR updates the
fliblibrary to be compatible with NeoForge 1.21.1.Warning
Disclaimer: This update was developed and compiled with the assistance of an AI agent. While the library successfully builds and runs alongside dependent mods (like Cyclic), it has not been thoroughly tested across all possible edge cases.
Notes for Maintainers:
FluidTagIngredient: In 1.21.1, the strictFluidStack.STREAM_CODECthrows a fatalEncoderExceptionwhen syncing empty fluid stacks across the network. While dependent mods (like Cyclic) can bypass this usingOPTIONAL_STREAM_CODECin their recipes, it is highly recommended to update the codec insideflib'sFluidTagIngredientto an optional variant in the future to prevent server kicks for other mods.Tested on NeoForge 21.1.115+.