mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 18:00:08 +00:00
23 lines
623 B
TypeScript
23 lines
623 B
TypeScript
import { eventHandlers } from "../../bot.ts";
|
|
import { DiscordGatewayOpcodes } from "../../types/codes/gateway_opcodes.ts";
|
|
import type { StatusUpdate } from "../../types/gateway/status_update.ts";
|
|
import { ws } from "../../ws/ws.ts";
|
|
|
|
export function editBotStatus(data: Omit<StatusUpdate, "afk" | "since">) {
|
|
ws.shards.forEach((shard) => {
|
|
eventHandlers.debug?.(
|
|
"loop",
|
|
`Running forEach loop in editBotStatus function.`,
|
|
);
|
|
|
|
ws.sendShardMessage(shard, {
|
|
op: DiscordGatewayOpcodes.StatusUpdate,
|
|
d: {
|
|
since: null,
|
|
afk: false,
|
|
...data,
|
|
},
|
|
});
|
|
});
|
|
}
|