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

Commit

Permalink
Remove support for .zip mod extension
Browse files Browse the repository at this point in the history
  • Loading branch information
mircearoata committed Nov 22, 2020
1 parent 4d9502d commit 760f51b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { modCacheDir } from './paths';
let cachedMods = new Array<Mod>();
let cacheLoaded = false;

const modExtensions = ['.zip', '.smod'];
const modExtensions = ['.smod'];

export async function getModFromFile(modPath: string): Promise<Mod | undefined> {
if (modExtensions.includes(path.extname(modPath))) {
Expand Down

0 comments on commit 760f51b

Please sign in to comment.