Fix c.host and c.port

This commit is contained in:
7cc5c4f330d47060 2024-07-16 17:12:33 -04:00
parent c9bf673a4d
commit 1d0f1e97f5

View file

@ -14,8 +14,8 @@ class Command{
this.index = bot.id;
this.args = cmd.split(' ').slice(1);
this.verify = verify;
this.host = bot.host;
this.port = bot.port;
this.host = bot.host.host;
this.port = bot.host.port;
}
}