#94 Moved stuff around

This commit is contained in:
UKDTOM 2020-09-19 22:04:59 +02:00
parent 0f249bd756
commit 26d6ab0cae
7 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@
var def; var def;
var defLevels = JSON.parse(JSON.stringify(require('./def-Levels.json'))); var defLevels = JSON.parse(JSON.stringify(require('./defs/def-Levels.json')));
@ -179,23 +179,23 @@ const et = new class ET {
switch(libType) { switch(libType) {
case 'movie': case 'movie':
// code block // code block
def = JSON.parse(JSON.stringify(require('./def-Movie.json'))); def = JSON.parse(JSON.stringify(require('./defs/def-Movie.json')));
break; break;
case 'episode': case 'episode':
// code block // code block
def = JSON.parse(JSON.stringify(require('./def-Episode.json'))); def = JSON.parse(JSON.stringify(require('./defs/def-Episode.json')));
break; break;
case 'show': case 'show':
// code block // code block
def = JSON.parse(JSON.stringify(require('./def-Show.json'))); def = JSON.parse(JSON.stringify(require('./defs/def-Show.json')));
break; break;
case 'artist': case 'artist':
// code block // code block
def = JSON.parse(JSON.stringify(require('./def-Artist.json'))); def = JSON.parse(JSON.stringify(require('./defs/def-Artist.json')));
break; break;
case 'photo': case 'photo':
// code block // code block
def = JSON.parse(JSON.stringify(require('./def-Photo.json'))); def = JSON.parse(JSON.stringify(require('./defs/def-Photo.json')));
break; break;
default: default:
// code block // code block