Фиксики

This commit is contained in:
JonnyBro 2022-04-08 01:39:29 +05:00
parent a861ff043c
commit 37cbf6419a

View file

@ -30,11 +30,11 @@ class Minecraft extends Command {
}; };
if (ip.split(":").length > 1) { if (ip.split(":").length > 1) {
const ip = ip.split(":"); const ipp = ip.split(":");
options = { options = {
type: "minecraft", type: "minecraft",
host: ip[0], host: ipp[0],
port: ip[1] port: ipp[1]
}; };
} }