Rtag 1.5.0 #6
Rubenicos
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Minecraft 1.20.5 change ItemStack format, in order to keep Rtag in continuous development, the next updates will have multiple experimental features
It's not suggested to use any experimental change/addition unless you are shading the library in your project
Additions
ItemObject#hasCustomData()
to check if item has custom data (or tag for <1.20.5).ItemObject#apply()
to apply data updates into item (or load compound for <1.20.5).ItemObject#copy()
to copy the provided item.ItemObject#getCustomDataTag()
andItemObject#setCustomDataTag()
to get tag from custom data component inside item.ItemObject#getComponentPath()
to convert any old tag path into new component path.ItemObject#getTagPath()
to convert any new component path into any old tag path.ItemTagStream#ofVersion()
to create an ItemTagStream instance with a provided version range.IContainerMirror
instance to convert any item inside container on it's item form.TagCompound#newUncheckedTag()
andTagList#newUncheckedTag()
to create a new tag without check provided object.Rtag#UNIT
constant to get a Minecraft unit object.Rtag#getMinecraftRegistry
method to get a custom registry provided by Bukkit.RtagItem#getComponents()
method to get component map from MC item (only for +1.20.5).IComponentMirror
instance to convert item tags into components and viceversa to mantain cross-version support on ItemTagStream.DataComponent
utility class to manage any data Holder, Map and Patch instances.ComponentType
utility class to get, parse, encode and handle any data component type and object.RtagItem
instance.Changes
ServerInstance
utility class has been fully recoded.TagCompound.DATA
usage will be moved toTStream.COMPOUND
.#edit()
method from RtagEditor instances has been moved into RtagEditor directly.Enchantment
usage from RtagItem on +1.20.5 servers will be redirected to Bukkit API (since items now cannot hold invalid enchantments).RtagItem#fixSerialization()
will make no change on +1.20.5 since items now use different serialization.EasyLookup#field()
is now a public method.Deprecations
HideFlag
usage from RtagItem since items cannot have flags on +1.20.5.ItemObject#load()
since items now cannot implement direct updates from compound (and also is really messy to mantain on newer versions).ItemObject#getTag()
andItemObject#setTag()
since items now use custom data component.IShulkerMirror
instance since IComponentMirror now is used to convert containers.This discussion was created from the release Rtag 1.5.0.
Beta Was this translation helpful? Give feedback.
All reactions