From 90a78e3526ab1a5543189383de406a5f84939d4a Mon Sep 17 00:00:00 2001 From: nervn Date: Wed, 17 Jul 2024 22:18:34 +0300 Subject: [PATCH] fix the max time for each tier --- guide/Message/awaitMessage.md | 2 +- guide/Text/Components/awaitButton.md | 2 +- guide/Text/Components/awaitMenu.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/Message/awaitMessage.md b/guide/Message/awaitMessage.md index 5fe5105..5a76bd9 100644 --- a/guide/Message/awaitMessage.md +++ b/guide/Message/awaitMessage.md @@ -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: diff --git a/guide/Text/Components/awaitButton.md b/guide/Text/Components/awaitButton.md index 4930729..07ea516 100644 --- a/guide/Text/Components/awaitButton.md +++ b/guide/Text/Components/awaitButton.md @@ -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 diff --git a/guide/Text/Components/awaitMenu.md b/guide/Text/Components/awaitMenu.md index e59219b..ac218cc 100644 --- a/guide/Text/Components/awaitMenu.md +++ b/guide/Text/Components/awaitMenu.md @@ -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: