Clarifies wording

This commit is contained in:
AliasAlreadyTaken 2024-06-07 05:20:57 +02:00
parent 28af30c972
commit 378e5cff96
2 changed files with 4 additions and 4 deletions

View File

@ -105,7 +105,7 @@ Those tickers sit in a table with `id` as index:
/ticker_add message$frequency in seconds/minutes/hours/days/weeks$runtime in seconds/minutes/hours/days/weeks/utc
```
Sends the message each frequency for or until the runtime expires.
Sends the message each frequency for runtime or until timestamp.
Time distances may be given as `60s` or `60 s`, allowed units are s = second, m = minute, h = hour, d = day and w = week.
@ -127,13 +127,13 @@ Delete the ticker ID.
/ticker_list
```
List ticker with ID to you.
List attributes of ticker with ID to you.
```
/ticker_list_all
```
Lists all ticker to you.
Lists all tickers to you.
```
/ticker_say ticker_id

View File

@ -1,7 +1,7 @@
local chatcommand_cmd = yl_ticker.settings.chatcommand_domain .. "_add"
local chatcommand_definition = {
params = "<message>$<frequency>$<runtime|timestamp>",
description = "Sends the message each frequency until runtime or timestamp." ..
description = "Sends the message each frequency for runtime or until timestamp." ..
"\n" .. "Example: /" .. chatcommand_cmd .. " Message $ 50 $ 3600" ..
"\n" .. "For more examples do /" ..
yl_ticker.settings.chatcommand_domain .. "_examples",