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 5ff76fc commit eb12458Copy full SHA for eb12458
src/Discord/WebSockets/Op.php
@@ -39,7 +39,9 @@ class Op
39
/** Used for client handshake. */
40
public const OP_IDENTIFY = 2;
41
/** Used to update the client presence. */
42
- public const OP_PRESENCE_UPDATE = 3;
+ public const OP_UPDATE_PRESENCE = 3;
43
+ /** @deprecated 10.18.31 Use `OP_UPDATE_PRESENCE` */
44
+ public const OP_PRESENCE_UPDATE = self::OP_UPDATE_PRESENCE;
45
/** Used to join/move/leave voice channels. */
46
public const OP_UPDATE_VOICE_STATE = 4;
47
/** @deprecated 10.18.31 Use `OP_UPDATE_VOICE_STATE` */
0 commit comments