Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix intents-related docs #430

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions libs/client/Client.lua
Original file line number Diff line number Diff line change
Expand Up @@ -330,10 +330,10 @@ end
--[=[
@m setIntents
@t mem
@p intents Intents-Resolvable
@op intents number
@r nothing
@d Sets the gateway intents that this client will use. The new value will not be
used internally until the client (re-)identifies.
used internally until the client (re-)identifies. Defaults to `0`.
]=]
function Client:setIntents(intents)
self._intents = tonumber(intents) or 0
Expand All @@ -342,7 +342,7 @@ end
--[=[
@m enableIntents
@t mem
@p ... Intents-Resolvables
@p ... Intents-Resolvable
@r nothing
@d Enables individual gateway intents for this client. The new value will not be
used internally until the client (re-)identifies.
Expand All @@ -357,7 +357,7 @@ end
--[=[
@m disableIntents
@t mem
@p ... Intents-Resolvables
@p ... Intents-Resolvable
@r nothing
@d Disables individual gateway intents for this client. The new value will not be
used internally until the client (re-)identifies.
Expand Down