diff options
| author | ilotterytea <iltsu@alright.party> | 2025-04-17 01:58:26 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-04-17 01:58:26 +0500 |
| commit | 05a2b0472ed116fb5939a25e44aaecbcfa9d7537 (patch) | |
| tree | 9f3e60af29d93b797ed05112b55f1415beca87ff | |
| parent | 3355ee655fde11f3bb65037d4090a27e7acb37b1 (diff) | |
fix: added missing 'aliases' property
| -rw-r--r-- | luamods/event.lua | 1 | ||||
| -rw-r--r-- | luamods/hello.lua | 1 | ||||
| -rw-r--r-- | luamods/join.lua | 1 | ||||
| -rw-r--r-- | luamods/massping.lua | 1 | ||||
| -rw-r--r-- | luamods/ping.lua | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/luamods/event.lua b/luamods/event.lua index be27622..d6eb273 100644 --- a/luamods/event.lua +++ b/luamods/event.lua @@ -159,6 +159,7 @@ The `!event` command gives the ability to manage events. ]], delay_sec = 1, options = {}, + aliases = {}, subcommands = { "on", "off", "list", "edit", "settarget", "setmassping", "call", "view" }, minimal_rights = "moderator", handle = function(request) diff --git a/luamods/hello.lua b/luamods/hello.lua index 5facbf5..b359f4c 100644 --- a/luamods/hello.lua +++ b/luamods/hello.lua @@ -2,6 +2,7 @@ return { name = "hello", delay_sec = 5, options = {}, + aliases = {}, subcommands = {}, minimal_rights = "user", handle = function(request) diff --git a/luamods/join.lua b/luamods/join.lua index 43d7c65..e663c96 100644 --- a/luamods/join.lua +++ b/luamods/join.lua @@ -30,6 +30,7 @@ return { description = "Add the bot to your channel.", delay_sec = 1, options = {}, + aliases = {}, subcommands = { "silent" }, minimal_rights = "user", handle = function(request) diff --git a/luamods/massping.lua b/luamods/massping.lua index a0bea4b..380ad51 100644 --- a/luamods/massping.lua +++ b/luamods/massping.lua @@ -4,6 +4,7 @@ return { delay_sec = 5, options = {}, subcommands = {}, + aliases = {}, minimal_rights = "moderator", handle = function(request) local chatters = twitch_get_chatters() diff --git a/luamods/ping.lua b/luamods/ping.lua index d6ac40d..d314cb2 100644 --- a/luamods/ping.lua +++ b/luamods/ping.lua @@ -4,6 +4,7 @@ return { "The `!ping` command checks to see if it's alive and gives a bunch of other data like memory usage, compiler version, etc.", delay_sec = 5, options = {}, + aliases = {}, subcommands = {}, minimal_rights = "user", handle = function(request) |
