Forcing force verify and verify to use uuids
This commit is contained in:
@@ -67,16 +67,16 @@ module.exports = {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const userCheck = await fetch(mojang + ign);
|
||||||
|
const userUUID = userCheck.data.id;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await fetch(slothPixel + ign);
|
await fetch(slothPixel + userUUID);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
interaction.editReply('That player doesn\'t exist. [Hypixel]')
|
interaction.editReply('That player doesn\'t exist. [Hypixel]')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const userCheck = await fetch(mojang + ign);
|
|
||||||
const userUUID = userCheck.data.id;
|
|
||||||
|
|
||||||
const hypixelCheck = await fetch(slothPixel + userUUID);
|
const hypixelCheck = await fetch(slothPixel + userUUID);
|
||||||
const head = minotar + ign;
|
const head = minotar + ign;
|
||||||
|
|
||||||
|
|||||||
@@ -56,16 +56,16 @@ module.exports = {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const userCheck = await fetch(mojang + ign);
|
||||||
|
const userUUID = userCheck.data.id;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await fetch(slothPixel + ign);
|
await fetch(slothPixel + userUUID);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
interaction.editReply('That player doesn\'t exist. [Hypixel]')
|
interaction.editReply('That player doesn\'t exist. [Hypixel]')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const userCheck = await fetch(mojang + ign);
|
|
||||||
const userUUID = userCheck.data.id;
|
|
||||||
|
|
||||||
const hypixelCheck = await fetch(slothPixel + userUUID);
|
const hypixelCheck = await fetch(slothPixel + userUUID);
|
||||||
const head = minotar + ign;
|
const head = minotar + ign;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user