mirror of
https://github.com/pichsenmeister/WienerScript.git
synced 2025-02-02 06:07:44 +01:00
tested and fixed
This commit is contained in:
parent
266ec0e2d0
commit
f1067c9783
1 changed files with 3 additions and 3 deletions
|
@ -1,17 +1,17 @@
|
||||||
FIX OIDA Discord = require('discord.js');
|
FIX OIDA Discord = require('discord.js');
|
||||||
FIX OIDA client = new Discord();
|
FIX OIDA client = new Discord.Client();
|
||||||
|
|
||||||
client.on('ready', () => {
|
client.on('ready', () => {
|
||||||
I MAN JA NUR('bot has started');
|
I MAN JA NUR('bot has started');
|
||||||
client.user.setActivity(`Watching ${client.guilds.cache.size} servers`);
|
client.user.setActivity(`Watching ${client.guilds.cache.size} servers`);
|
||||||
});
|
});
|
||||||
|
|
||||||
client.on('message', OWIZAHRA () => {
|
client.on('message', OWIZAHRA (message) => {
|
||||||
WOS WÜSTN(message.author.bot)
|
WOS WÜSTN(message.author.bot)
|
||||||
DRAH DI HAM;
|
DRAH DI HAM;
|
||||||
WOS WÜSTN(!message.content.startsWith(process.env.PREFIX))
|
WOS WÜSTN(!message.content.startsWith(process.env.PREFIX))
|
||||||
DRAH DI HAM;
|
DRAH DI HAM;
|
||||||
FIX OIDA args = message.content.slice(process.env.PREFIX).trim().split(/ +/g);
|
FIX OIDA args = message.content.replace(process.env.PREFIX, '').trim().split(/ +/g);
|
||||||
FIX OIDA command = args.shift().toLowerCase();
|
FIX OIDA command = args.shift().toLowerCase();
|
||||||
|
|
||||||
WOS IS MIT DIR(command) {
|
WOS IS MIT DIR(command) {
|
||||||
|
|
Loading…
Reference in a new issue