diff options
Diffstat (limited to 'webAO/master.js')
| -rw-r--r-- | webAO/master.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/webAO/master.js b/webAO/master.js index 863c311..5d51d24 100644 --- a/webAO/master.js +++ b/webAO/master.js @@ -11,12 +11,12 @@ const fp = new Fingerprint({ /** An emulated, semi-unique HDID that is generally safe for HDID bans. */ const cookieid = getCookie("fingerprint"); let hdid; -if (cookieid) { - hdid = cookieid; -} else { + + + hdid = fp.get(); setCookie("fingerprint",hdid); -} + console.log(`Your emulated HDID is ${hdid}`); let oldLoading = false; |
