-
-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(content): Update to Minecraft 1.21.5 #4193
Open
gabizou
wants to merge
31
commits into
api-15
Choose a base branch
from
update/1.21.5
base: api-15
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
A lot of small changes to note: - TicketTypes are now registered - Tickets are just dummy holders of the pending timeout - Entities referencing an "Owner" now use EntityReference for the duality of UUID + live Entity references - I've got concerns that the reference may be problematic with entity instances being recreated for various reasons. - Chat events have become records - ArmorItem has completely disappeared, so no more referencable characteristic to determine an ItemStack is an armor piece or not, short of checking the DataComponents applied - Tools have an added ability to be "destructive" in creative mode - SpawnLists for spawns are now using a WeightedList - A new block change flag being applied to prevent BlockEntities "drops" during a block change. This appears to be specific to MC-117574 - Sounds are now being played by entities, not just players, this is a signature change.
Changes: - Entity.moveTo is renamed snapTo - Entities are moving slowly to components and hiding their data accessors, but nothing monumental yet on this front. There will be more developments in the future to harness the usage of the now-fully-included GameTest framework from Mojang. We'll be able to use this to our better advantage to verify several thousand interactions that otherwise manual testing will often forget. See https://minecraft.wiki/w/Java_Edition_25w03a
Mainly event generation changes Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Notable changes: - Several client related resources now are built as ClientAssets - SmithingRecipes now require a base ingredient - Hidden attributes for items is now in a separated component so Data needs to be fixed in several places - GameProfile lookups seems to have changed, need to fix our cache - Attack Events need to handle capturing the BlockDamage component - Hidden Flags are a new component that uses component keys to hide tooltips.
Breaking Changes - Raids no longer have a ServerWorld link Additions - Mainly new type entries and tag entries are updated
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Notable changes: - EntityEquipment now contains item slots/data for non-player inventory - This has a change with how slots are tracked I believe, we could consider reviewing the current transaction operations to verify if we need as many slot index based tracking as we currently do. - Ticking weather is now written as wrap operations or WrapMethods - Entity dropping items is centered in LivingEntity, a better mixing in opportunity
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Notable changes: - Minecart fields are getting slowly inlined, likely the next targets to get components - Turtles are also experiencing a similar field change - BossEvents now persist data in a record, also codec'ed, so this should simplify the Adventure implementation. - Player respawn data is now a record/component-like, which required a few WrapOperations to sort out which World is used to resawn in. - Entities have a "functional" approach to applying "inside block effect interactions" which makes some of the mixins harder to interact with. - This was noticeable in the BaseFireBlockMixin where the consumer has to be replaced to properly support the BlockDamageSource. - All UUIDs are now set on CompoundTags via Codecs. - This has a greater feeling that defining the schema once via Codec is the way Mojang is going, since it means the data can be applied whether in NBT or in a binary stream payload via chunks. Time will tell. - A larger refactor of how SavedTicksMixin works to save custom data, as the above point mentioned, things are migrating to Codecs, which means we have to add on to the existing codec as well in certain places.
A significant change is with Entity related data becoming DataComponent accessible. It's far higher likely to be able to access different pieces generically with the components, provided it's a flat mapping.
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Notes: - nbt.Tag is now more consolidated and can be used in better switch statements - ComponentTag is now more directed to use Codecs to parse/store data, we may have to seriously look at migrating to Codecs in prior versions to have better support moving forward. - A seemingly archaic ComponentArgument fix no longer applies per Mojang fixes to command parsing tag components Issues: - Concurrent modifications occur on upgrading data from prior versions with respect to Sponge data specifically - Some odd behavior of the Client sending a movement packet that causes a NoSuchElementException when loading a signleplayer world. This is easily remedied by a mixin on Entity.removeLatestMovementRecordingBatch but more investigation is required whether this is a fundamental bug in Vanilla, or something that Sponge is introducing.
With the changes to eneity teleports, Mojang now attempts to clear any recorded movement packets, but this can lead to a NoSuchElementException being thrown at the server which crashes the game entirely.
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
The underlying bug was fixed now with the same isEmpty check. This reverts commit b039b78.
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
Minimal changes required here since all the snapshots have been updates.
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
Each snapshot commit has several details about the implementation changes and some gotchas.