Merge pull request #43 from thomeval/stable

Fixed plugin crash due to a missing import
This commit is contained in:
Freddie Wang 2022-05-04 14:53:29 +08:00 committed by GitHub
commit 10ead0bdf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
import { getVersion } from "../utils";
import { CommonMusicDataField, findMDBFile, readMDBFile, loadSongsForGameVersion } from "../data/mdb";
import { findMDBFile, readMDBFile, loadSongsForGameVersion } from "../data/mdb";
import { CommonMusicDataField } from "../models/commonmusicdata";
import Logger from "../utils/logger"
const logger = new Logger("MusicList")