mirror of
https://github.com/billsonnn/nitro-converter.git
synced 2025-01-18 14:36:26 +01:00
Fix downloaders
This commit is contained in:
parent
7b41d74a3a
commit
066a2c5ac3
@ -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",
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user