Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion util/chatSend.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const chatSend = async (message) => {
try {
let bid = process.env.bid // Your Bid From Brainshop.ai
let key = process.env.key // Your Key From Brainshop.ai
let uid = "1"
let uid = message.author.id
let msg = message.content
message.channel.startTyping()
await axios.get(`http://api.brainshop.ai/get?bid=${bid}&key=${key}&uid=${uid}&msg=${msg}`)
Expand Down