diff options
| author | stonedDiscord <Tukz@gmx.de> | 2022-03-07 18:45:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-07 18:45:40 +0100 |
| commit | 0b9a04abefbf088316e013df7fa327ad4eb0aecb (patch) | |
| tree | 2338cf231c8535280c283d8d08d91f4fa4018912 /webAO/client.js | |
| parent | 9c5fd198c11a0e2b976c6a2802eff9c4fef836f6 (diff) | |
| parent | 4bd674c196c0e06b460dffee440c5d2a48061bcc (diff) | |
Merge pull request #95 from caleb-mabry/refactor-constants
Refactor constants
Diffstat (limited to 'webAO/client.js')
| -rw-r--r-- | webAO/client.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webAO/client.js b/webAO/client.js index eb7c7a2..a041b7a 100644 --- a/webAO/client.js +++ b/webAO/client.js @@ -12,10 +12,10 @@ import { } from './encoding.js'; // Load some defaults for the background and evidence dropdowns -import vanilla_character_arr from './characters.js'; -import vanilla_music_arr from './music.js'; -import vanilla_background_arr from './backgrounds.js'; -import vanilla_evidence_arr from './evidence.js'; +import vanilla_character_arr from "./constants/characters.js"; +import vanilla_music_arr from "./constants/music.js"; +import vanilla_background_arr from "./constants/backgrounds.js"; +import vanilla_evidence_arr from "./constants/evidence.js"; import chatbox_arr from './styles/chatbox/chatboxes.js'; import iniParse from './iniParse'; |
