feat(minecraft): Update to 1.21.6#4209
Closed
gabizou wants to merge 20 commits into
Closed
Conversation
Follows most of the API additions. SpongeVanilla's client ui is definitely broken for the plugins screen. I'm unsure of the damage injections, something to look at fixing likely in api-15 as well. Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Mainly additions/changes from the previous snapshot. See: https://minecraft.wiki/w/Java_Edition_25w17a
Notable changes:
- ArmorStands have proper accessors
- TrialSpawnerData has a "component" for all the configs
- Gson component serialization apparently is inlined.. will need to verify
that Adventure's components still will function
- All read/write to Compounds is now routed through interfaces ValueInput/Output.
- This requires further thought for how Sponge serializes its custom data, we
will need to update the overall implementation to better support these interfaces
moving forward.
Notable changes: - EntityReferences abound, they're resolvable within the scope of a world that is being asked - Method rename for ServerPlayer.serverLevel() -> level(). See: https://minecraft.wiki/w/Java_Edition_25w19a
Notable Changes: - CommandsMixin needs a re-examination. It appears suggestion providers are moved to a different section, for now sponge commands do not get sent over to the client, but they still function on the server side. See: https://minecraft.wiki/w/Java_Edition_25w20a
Little changes overall from api-15.
Small changes to leash sound registered names. See: https://minecraft.wiki/w/Java_Edition_25w21a
Notable Changes: - Mojang removed further customization of packet sending, so Sponge's handling of custom packets ought to be the same, but it's otherwise untested. See: https://minecraft.wiki/w/Java_Edition_1.21.6_Pre-Release_1
Notably 4.21 includes component enhancements since 1.21.5 See changes from https://docs.advntr.dev/version-history/adventure.html#release-v4-19-0 https://docs.advntr.dev/version-history/adventure.html#release-v4-20-0 https://docs.advntr.dev/version-history/adventure.html#release-v4-21-0
Notable change: - Addition of Sound category that isn't yet represented in Adventure, so we delegate it to Master for now. See https://minecraft.wiki/w/Java_Edition_1.21.6_Pre-Release_3
# Conflicts: # SpongeAPI # gradle/verification-metadata.xml # src/mixins/java/org/spongepowered/common/mixin/core/commands/CommandsMixin.java # vanilla/src/mixins/java/org/spongepowered/vanilla/mixin/core/commands/CommandsMixin_Vanilla.java
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Adds a trigger that was missed in a previous version. See: https://minecraft.wiki/w/Java_Edition_1.21.6_Release_Candidate_1
Highly experimental. It appears some registry handling is broken so it's not guaranteed to function with plugins using certain World related registries as early as server load.
Member
Author
|
Closing as |
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.
SpongeAPI | Sponge
This is the culminating changes required for what we assume to become 1.21.6.
Each commit should contain a description of the underlying changes/compromises to support running the game in SpongeVanilla.
Typically, it will be not expected for SpongeNeo or SpongeForge to be updated as fast.