@@ -21,7 +21,7 @@ class Advancement(MCType):
2121 https://wiki.vg/Protocol#Update_Advancements
2222
2323 :param parent: The parent advancement.
24- :type parent: :class:`mcproto.types.identifier.Identifier`, optional
24+ :type parent: :class:`~ mcproto.types.identifier.Identifier`, optional
2525 :param display: The display information.
2626 :type display: :class:`AdvancementDisplay`, optional
2727 :param requirements: The criteria for this advancement.
@@ -62,14 +62,14 @@ class AdvancementDisplay(MCType):
6262 """Describes how an advancement should look.
6363
6464 :param title: The title of the advancement.
65- :type title: :class:`mcproto.types.chat.TextComponent`
65+ :type title: :class:`~ mcproto.types.chat.TextComponent`
6666 :param description: The description of the advancement.
67- :type description: :class:`mcproto.types.chat.TextComponent`
67+ :type description: :class:`~ mcproto.types.chat.TextComponent`
6868 :param icon: The icon of the advancement.
69- :type icon: :class:`mcproto.types.slot.Slot`
69+ :type icon: :class:`~ mcproto.types.slot.Slot`
7070 :param frame: The frame of the advancement (0: task, 1: challenge, 2: goal).
7171 :param background: The background texture of the advancement.
72- :type background: :class:`mcproto.types.identifier.Identifier`, optional
72+ :type background: :class:`~ mcproto.types.identifier.Identifier`, optional
7373 :param show_toast: Whether to show a toast notification.
7474 :type show_toast: bool
7575 :param hidden: Whether the advancement is hidden.
@@ -136,7 +136,7 @@ class AdvancementProgress(MCType):
136136 """Represents the progress of an advancement.
137137
138138 :param criteria: The criteria for this advancement.
139- :type criteria: dict[:class:`mcproto.types.identifier.Identifier`, :class:`AdvancementCriterion`]
139+ :type criteria: dict[:class:`~ mcproto.types.identifier.Identifier`, :class:`AdvancementCriterion`]
140140 """
141141
142142 criteria : dict [Identifier , AdvancementCriterion ]
0 commit comments