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 48d4eb4 commit 5ff76fcCopy full SHA for 5ff76fc
src/Discord/WebSockets/Op.php
@@ -41,7 +41,9 @@ class Op
41
/** Used to update the client presence. */
42
public const OP_PRESENCE_UPDATE = 3;
43
/** Used to join/move/leave voice channels. */
44
- public const OP_VOICE_STATE_UPDATE = 4;
+ public const OP_UPDATE_VOICE_STATE = 4;
45
+ /** @deprecated 10.18.31 Use `OP_UPDATE_VOICE_STATE` */
46
+ public const OP_VOICE_STATE_UPDATE = self::OP_UPDATE_VOICE_STATE;
47
/** Used for voice ping checking. */
48
public const OP_VOICE_SERVER_PING = 5;
49
/** Used to resume a closed connection. */
0 commit comments