Say command bugfix

This commit is contained in:
7cc5c4f330d47060 2024-07-24 04:08:46 -04:00
parent 7dc08ff81a
commit 679b24f1a9

View file

@ -1,6 +1,6 @@
module.exports={
execute: (c)=>{
if(c.args[0].startsWith("/") && !c.verify<1) return;
if(c.args[0].startsWith("/") && c.verify<1) return;
c.bot.chat(c.args.join(" "))
},
hidden: true,