Skip to content

Commit b381984

Browse files
committed
im dumb
1 parent e441285 commit b381984

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

src/API/getFriends.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../Errors');
2-
const toUuid = require('../utils/toUUID');
2+
const toUuid = require('../utils/toUuid');
33
module.exports = async function (query) {
44
if (!query) throw new Error(Errors.NO_NICKNAME_UUID);
55
const Friend = require('../structures/Friend');

src/API/getPlayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../Errors');
2-
const toUuid = require('../utils/toUUID');
2+
const toUuid = require('../utils/toUuid');
33
const getGuild = require('./getGuild');
44
module.exports = async function (query, options = { guild: false }) {
55
if (!query) throw new Error(Errors.NO_NICKNAME_UUID);

src/API/getRecentGames.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../Errors');
2-
const toUuid = require('../utils/toUUID');
2+
const toUuid = require('../utils/toUuid');
33
const day3 = 1000 * 60 * 60 * 24 * 3;
44
module.exports = async function (query, playerData) {
55
if (!query) throw new Error(Errors.NO_NICKNAME_UUID);

src/API/getStatus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const toUuid = require('../utils/toUUID');
1+
const toUuid = require('../utils/toUuid');
22
module.exports = async function (query) {
33
const Status = require('../structures/Status');
44
query = await toUuid(query);

src/API/skyblock/getSkyblockAuctionsByPlayer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../../Errors');
2-
const toUuid = require('../../utils/toUUID');
2+
const toUuid = require('../../utils/toUuid');
33
module.exports = async function (query, includeItemBytes = false) {
44
if (!query) throw new Error(Errors.NO_NICKNAME_UUID);
55
const Auction = require('../../structures/SkyBlock/Auctions/Auction');

src/API/skyblock/getSkyblockMember.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../../Errors');
2-
const toUuid = require('../../utils/toUUID');
2+
const toUuid = require('../../utils/toUuid');
33
const getPlayer = require('../getPlayer');
44
module.exports = async function (query, options = { fetchPlayer: false }) {
55
const SkyblockMember = require('../../structures/SkyBlock/SkyblockMember');

src/API/skyblock/getSkyblockProfiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const Errors = require('../../Errors');
2-
const toUuid = require('../../utils/toUUID');
2+
const toUuid = require('../../utils/toUuid');
33
const getPlayer = require('../getPlayer');
44
module.exports = async function (query, options = { fetchPlayer: false }) {
55
const SkyblockProfile = require('../../structures/SkyBlock/SkyblockProfile');

typings/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ declare module 'hypixel-api-reborn' {
159159
* Calls Mojang API for player's uuid by nickname
160160
* @param input Player nickname
161161
*/
162-
toUUID(input: string): Promise<string>
162+
toUuid(input: string): Promise<string>
163163
/**
164164
* Converts varInts to js numbers
165165
* @param bytes Array of numbers to be read as minecraft var ints.

0 commit comments

Comments
 (0)