Fix downloaders

This commit is contained in:
Bill 2021-02-22 11:22:00 -05:00
parent 7b41d74a3a
commit 066a2c5ac3
4 changed files with 4 additions and 3 deletions

View File

@ -16,6 +16,7 @@
"convert.productdata": "1",
"convert.figuremap": "1",
"convert.effectmap": "1",
"convert.externaltexts": "1",
"convert.figure": "1",
"convert.effect": "1",
"convert.furniture": "1",

View File

@ -29,7 +29,7 @@ export class EffectDownloader
const existingFile = new File(directory.path + '/' + className + '.nitro');
if(existingFile.isDirectory) continue;
if(existingFile.isDirectory()) continue;
if(classNames.indexOf(className) >= 0) continue;

View File

@ -29,7 +29,7 @@ export class FigureDownloader
const existingFile = new File(directory.path + '/' + className + '.nitro');
if(existingFile.isDirectory) continue;
if(existingFile.isDirectory()) continue;
if(className === 'hh_human_fx' || className === 'hh_pets') continue;

View File

@ -25,7 +25,7 @@ export class PetDownloader
{
const existingFile = new File(directory.path + '/' + petType + '.nitro');
if(existingFile.isDirectory) continue;
if(existingFile.isDirectory()) continue;
if(classNames.indexOf(petType) >= 0) continue;