mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-27 11:27:04 +02:00
fix sleeve memory bug
This commit is contained in:
@@ -10,13 +10,7 @@ interface IProps {
|
||||
|
||||
function randomize(char: string): string {
|
||||
const randFrom = (str: string): string => str[Math.floor(Math.random() * str.length)];
|
||||
const classes = [
|
||||
"abcdefghijklmnopqrstuvwxyz",
|
||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZ",
|
||||
"1234567890",
|
||||
" _",
|
||||
"()[]{}<>",
|
||||
];
|
||||
const classes = ["abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "1234567890", " _", "()[]{}<>"];
|
||||
const other = `!@#$%^&*()_+|\\';"/.,?\`~`;
|
||||
|
||||
for (const c of classes) {
|
||||
|
||||
Reference in New Issue
Block a user