Skip to content

Commit

Permalink
chore: remove unnecessary type inference
Browse files Browse the repository at this point in the history
  • Loading branch information
dockfries committed Sep 16, 2022
1 parent 1e2408d commit 9175925
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/controllers/streamer/checkpoint/baseCheckpoint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ export class DynamicCheckpoint {
z,
size,
streamdistance,
worldid as unknown as number[],
interiorid as unknown as number[],
playerid as unknown as number[],
areaid as unknown as number[],
worldid,
interiorid,
playerid,
areaid,
priority
);
} else {
Expand All @@ -77,10 +77,10 @@ export class DynamicCheckpoint {
z,
size,
worldid,
interiorid as unknown as number,
playerid as unknown as number,
interiorid,
playerid,
streamdistance,
areaid as unknown as number,
areaid,
priority
);
}
Expand Down

0 comments on commit 9175925

Please sign in to comment.