We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b57461 commit 27ece86Copy full SHA for 27ece86
discord/collectibles.py
@@ -58,12 +58,20 @@ def __repr__(self) -> str:
58
59
@cached_property
60
def static_asset(self) -> Asset:
61
- """The static :class:`Asset` of this nameplate."""
+ """
62
+ The static :class:`Asset` of this nameplate.
63
+
64
+ .. versionadded:: 2.7
65
66
return Asset._from_collectible(self._state, self._asset)
67
68
69
def animated_asset(self) -> Asset:
- """The animated :class:`Asset` of this nameplate."""
70
71
+ The animated :class:`Asset` of this nameplate.
72
73
74
75
return Asset._from_collectible(self._state, self._asset, animated=True)
76
77
0 commit comments