Say command bugfix

This commit is contained in:
7cc5c4f330d47060 2024-07-24 04:07:33 -04:00
parent 7995122660
commit 87ed9ba01e

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,