Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Jul 30, 2024
1 parent e145271 commit 32948f7
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 23 deletions.
2 changes: 1 addition & 1 deletion src/API/getLeaderboards.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Leaderboard from '../structures/Leaderboard';
import Constants from '../utils/Constants';
import Errors from '../Errors';
import Endpoint from '../Private/Endpoint';
import Errors from '../Errors';
import Client from '../Client';
export default class getLeaderboards extends Endpoint {
readonly client: Client;
Expand Down
3 changes: 1 addition & 2 deletions src/API/getPlayer.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import Endpoint from '../Private/Endpoint';
import Player from '../structures/Player';
import toUuid from '../utils/toUuid';
import Errors from '../Errors';

import Endpoint from '../Private/Endpoint';
import Client from '../Client';
export default class getPlayer extends Endpoint {
readonly client: Client;
Expand Down
34 changes: 17 additions & 17 deletions src/structures/Player.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
import { getPlayerLevel, getRank, getSocialMedia, parseClaimedRewards, playerLevelProgress } from '../utils/Player';
import { recursive } from '../utils/removeSnakeCase';
import Color from './Color';
import Game from './Game';
import Arcade from './MiniGames/Arcade';
import ArenaBrawl from './MiniGames/ArenaBrawl';
import BedWars from './MiniGames/BedWars';
import BlitzSurvivalGames from './MiniGames/BlitzSurvivalGames';
import BuildBattle from './MiniGames/BuildBattle';
import TurboKartRacers from './MiniGames/TurboKartRacers';
import MurderMystery from './MiniGames/MurderMystery';
import { recursive } from '../utils/removeSnakeCase';
import CopsAndCrims from './MiniGames/CopsAndCrims';
import Duels from './MiniGames/Duels';
import BuildBattle from './MiniGames/BuildBattle';
import SmashHeroes from './MiniGames/SmashHeroes';
import PlayerCosmetics from './PlayerCosmetics';
import Quakecraft from './MiniGames/Quakecraft';
import ArenaBrawl from './MiniGames/ArenaBrawl';
import MegaWalls from './MiniGames/MegaWalls';
import MurderMystery from './MiniGames/MurderMystery';
import Paintball from './MiniGames/Paintball';
import Pit from './MiniGames/Pit';
import Quakecraft from './MiniGames/Quakecraft';
import SkyWars from './MiniGames/SkyWars';
import SmashHeroes from './MiniGames/SmashHeroes';
import SpeedUHC from './MiniGames/SpeedUHC';
import TNTGames from './MiniGames/TNTGames';
import TurboKartRacers from './MiniGames/TurboKartRacers';
import UHC from './MiniGames/UHC';
import VampireZ from './MiniGames/VampireZ';
import Walls from './MiniGames/Walls';
import Warlords from './MiniGames/Warlords';
import WoolWars from './MiniGames/WoolWars';
import PlayerCosmetics from './PlayerCosmetics';
import SkyWars from './MiniGames/SkyWars';
import BedWars from './MiniGames/BedWars';
import Arcade from './MiniGames/Arcade';
import Walls from './MiniGames/Walls';
import Duels from './MiniGames/Duels';
import UHC from './MiniGames/UHC';
import Pit from './MiniGames/Pit';
import Color from './Color';
import Game from './Game';

export interface LevelProgress {
xpToNext: number;
Expand Down
4 changes: 2 additions & 2 deletions src/structures/SkyBlock/SkyblockMember.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { getNetworth, NetworthResult } from 'skyhelper-networth';
import Constants from '../../utils/Constants';
import {
SkyblockMemberChocolateFactoryData,
SkyblockMemberTrophyFishRank,
Expand All @@ -21,7 +19,9 @@ import {
getSlayer,
decode
} from '../../utils/SkyblockUtils';
import { getNetworth, NetworthResult } from 'skyhelper-networth';
import SkyblockInventoryItem from './SkyblockInventoryItem';
import Constants from '../../utils/Constants';
import SkyblockPet from './SkyblockPet';

export interface SkyblockMemberEquipment {
Expand Down
2 changes: 1 addition & 1 deletion src/structures/SkyBlock/SkyblockPet.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Constants from '../../utils/Constants';
import { SkyblockRarity } from '../../utils/SkyblockUtils';
import Constants from '../../utils/Constants';

/**
* Skyblock Pet class
Expand Down

0 comments on commit 32948f7

Please sign in to comment.