mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 17:53:55 +01:00
commit
c85ebe9ee2
2
dist/engine.bundle.js
vendored
2
dist/engine.bundle.js
vendored
File diff suppressed because one or more lines are too long
@ -33,12 +33,10 @@ export function cat(
|
||||
showLiterature(file);
|
||||
return;
|
||||
} else if (filename.endsWith(".msg")) {
|
||||
const file = server.messages[i];
|
||||
if (typeof file === "string") throw new Error(".msg file should not be a .lit");
|
||||
if (file.filename === filename) {
|
||||
showMessage(file);
|
||||
return;
|
||||
}
|
||||
const file = server.messages[i] as Message;
|
||||
if (file.filename !== filename) continue;
|
||||
showMessage(file);
|
||||
return;
|
||||
}
|
||||
}
|
||||
} else if (filename.endsWith(".txt")) {
|
||||
|
@ -31,6 +31,7 @@ const useStyles = makeStyles((theme: Theme) =>
|
||||
},
|
||||
preformatted: {
|
||||
whiteSpace: "pre-wrap",
|
||||
overflowWrap: "anywhere",
|
||||
margin: theme.spacing(0),
|
||||
},
|
||||
list: {
|
||||
|
Loading…
Reference in New Issue
Block a user