From 933edd9bb028c82d8e280f00f8e43b1d604db429 Mon Sep 17 00:00:00 2001 From: MistakingManx Date: Mon, 13 Oct 2025 01:49:41 -0400 Subject: [PATCH] Add two more options to setActivity Add the "type" and "name" options to setActivity. --- src/client.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/client.js b/src/client.js index 0ff29da..39fba36 100644 --- a/src/client.js +++ b/src/client.js @@ -518,6 +518,8 @@ class RPCClient extends EventEmitter { return this.request(RPCCommands.SET_ACTIVITY, { pid, activity: { + type: args.type, + name: args.name, state: args.state, details: args.details, timestamps,