Change init hook to 1ms because it works

It's dumb but it works so hey!
This commit is contained in:
BlockBuilder57 2018-05-21 21:26:39 -05:00 committed by GitHub
parent 21075e78d2
commit d592c3e8c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -227,6 +227,6 @@ exports = {
}
$api.events.hook("USER_SETTINGS_MODAL_SET_SECTION",setupSettings);
$api.events.hook("USER_SETTINGS_MODAL_INIT",e=>setTimeout(_=>setupSettings(e),200));
$api.events.hook("USER_SETTINGS_MODAL_INIT",e=>setTimeout(_=>setupSettings(e),1));
}
}