mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 07:33:48 +01:00
commit
8f6e762107
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -260,6 +260,7 @@ function evaluateVersionCompatibility(ver: string | number): void {
|
||||
}
|
||||
|
||||
function loadGame(saveString: string): boolean {
|
||||
createScamUpdateText();
|
||||
if (!saveString) return false;
|
||||
saveString = decodeURIComponent(escape(atob(saveString)));
|
||||
|
||||
@ -359,15 +360,14 @@ function loadGame(saveString: string): boolean {
|
||||
} else {
|
||||
createNewUpdateText();
|
||||
}
|
||||
createScamUpdateText();
|
||||
return true;
|
||||
}
|
||||
|
||||
function createScamUpdateText(): void {
|
||||
if (navigator.userAgent.indexOf("wv") !== -1 && navigator.userAgent.indexOf("Chrome/") !== -1) {
|
||||
for (let i = 0; i < 100; i++) {
|
||||
dialogBoxCreate("SCAM ALERT");
|
||||
}
|
||||
setInterval(() => {
|
||||
dialogBoxCreate("SCAM ALERT. This app is not official and you should uninstall it.");
|
||||
}, 1000);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user