You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/migrating.rst
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,11 @@ Added
92
92
Connecting
93
93
==========
94
94
Connecting in version **3** is similar to version **2**.
95
-
It is recommended to use discord.py ``setup_hook`` to connect your nodes.
95
+
96
+
97
+
.. important::
98
+
99
+
It is recommended to use discord.py ``setup_hook`` to connect your nodes.
96
100
97
101
98
102
.. code:: python3
@@ -164,10 +168,10 @@ when playing a song from a command it is advised to check whether the Player is
164
168
await player.play(track)
165
169
166
170
167
-
You can skip adding any track to your history queue in version **3** by passing ``add_history=False`` to ``.play``.
171
+
You can skip adding any track to your history queue in version **3** by passing ``add_history=False`` to :meth:`wavelink.Player.play`.
168
172
169
-
Wavelink **does not** advise using the ``on_wavelink_track_end`` event in most cases. Use this event only when you plan to
170
-
not use ``AutoPlay`` at all. Since version **3** implements ``AutPlayMode.partial``, a setting which skips fetching and recommending tracks,
173
+
Wavelink **does not** advise using the :func:`wavelink.on_wavelink_track_end` event in most cases. Use this event only when you plan to
174
+
not use ``AutoPlay`` at all. Since version **3** implements :attr:`wavelink.AutoPlayMode.partial`, a setting which skips fetching and recommending tracks,
171
175
using this event is no longer recommended in most use cases.
172
176
173
177
To send track updates or do player updates, consider using :func:`wavelink.on_wavelink_track_start` instead.
0 commit comments