fix code, implement twint stuff

This commit is contained in:
muskit
2022-09-26 14:44:46 -07:00
committed by msk
parent a8e30809e7
commit c06e712e06
4 changed files with 79 additions and 24 deletions
+7
View File
@@ -6,6 +6,8 @@ niji_en = dict()
niji_exid = dict()
talents = dict()
test_talents = dict()
def __create_dict(file, _dict):
print(f'Initializing talents\' account list from {file}...')
global talents
@@ -23,6 +25,7 @@ def init():
global holo_id
global niji_en
global niji_exid
global test_talents
# holoEN
__create_dict(f'{util.get_project_dir()}/lists/holoen.txt', holo_en)
@@ -33,3 +36,7 @@ def init():
# nijiexID
__create_dict(f'{util.get_project_dir()}/lists/nijiexid.txt', niji_exid)
test_talents = {
1390637197167038464: 'PomuRainpuff'
}