Skip to content

Commit

Permalink
fix(server/player): type correction
Browse files Browse the repository at this point in the history
  • Loading branch information
thelindat committed Sep 5, 2024
1 parent 9cedac4 commit 95693fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/player/loading.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { OxPlayer, PlayerInstance } from 'player/class';
import { OxPlayer } from 'player/class';
import { CreateUser, GetUserIdFromIdentifier } from './db';
import { GetIdentifiers, GetPlayerLicense } from 'utils';
import { DEBUG, SV_LAN } from '../config';
import type { Dict } from 'types';

const connectingPlayers: Dict<PlayerInstance> = {};
const connectingPlayers: Dict<OxPlayer> = {};

/** Loads existing data for the player, or inserts new data into the database. */
async function loadPlayer(playerId: number) {
Expand Down

0 comments on commit 95693fb

Please sign in to comment.