Skip to content

Commit

Permalink
fix the max time for each tier
Browse files Browse the repository at this point in the history
  • Loading branch information
NervN committed Jul 17, 2024
1 parent a8c3e93 commit 90a78e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion guide/Message/awaitMessage.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ return the user reply or undefined
### Timeout
It means the maximum time bot can wait user message for.\
it accept format of time like `10s`.\
The max time is `60 x bot tier` seconds, for example for tier 3 it would be `180` seconds.
The max time is `60 x (bot tier + 1)` seconds, for example for tier 3 it would be `240` seconds.

### Example:
<discord-messages>
Expand Down
2 changes: 1 addition & 1 deletion guide/Text/Components/awaitButton.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This way, you can send a message with buttons by using `{button:label:style/url:
### Timeout
It means the maximum time bot can wait user button click for.\
it accept format of time like `10s`.\
The max time is `60 x bot tier` seconds, for example for tier 3 it would be `180` seconds.
The max time is `60 x (bot tier + 1)` seconds, for example for tier 3 it would be `240` seconds.

::: details Examples

Expand Down
2 changes: 1 addition & 1 deletion guide/Text/Components/awaitMenu.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $awaitMenu[Message (optional);user id (optional, default:author);timeout (option
### Timeout
It means the maximum time bot can wait user message for.\
it accept format of time like `10s`.\
The max time is `60 x bot tier` seconds, for example for tier 3 it would be `180` seconds.
The max time is `60 x (bot tier + 1)` seconds, for example for tier 3 it would be `240` seconds.

### Example:
<discord-messages>
Expand Down

0 comments on commit 90a78e3

Please sign in to comment.