i did not mean to do that

This commit is contained in:
CrafterPika 2026-04-24 22:49:44 +02:00
commit 4814210ad6
No known key found for this signature in database
GPG key ID: 68B3920DBA3C6C31

View file

@ -6,6 +6,10 @@ function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
document.addEventListener('DOMContentLoaded', () => {
loadGearData();
sendToCSharp("OSType");
});
const delay = (ms) => new Promise(res => setTimeout(res, ms));