Compare commits

...

2 Commits

Author SHA1 Message Date
Yessiest 9f56d01b3e literally missed one comma 2022-05-11 00:58:11 +04:00
Yessiest e525b45147 Fixed missing arguments for event and delay 2022-05-11 00:56:54 +04:00
1 changed files with 7 additions and 0 deletions

View File

@ -125,6 +125,9 @@ local event = command("event",{
perms = {
"administrator"
},
args = {
"string"
},
exec = function(msg,args,opts)
return create_event(msg,table.concat(args," "))
end
@ -140,6 +143,10 @@ local delay = command("delay",{
{name = "Perms:",value = "any"},
}
}},
args = {
"string",
"string"
},
exec = function(msg,args,opts)
local format = args[1]
table.remove(args,1)