TGUI Update

This commit is contained in:
Heroman3003
2023-06-01 09:37:52 +10:00
committed by CHOMPStation2
parent 94f7414bca
commit 7144410a11
365 changed files with 12773 additions and 4100 deletions

View File

@@ -76,19 +76,17 @@ class LinkServer {
if (level <= 0 && !DEBUG) {
return;
}
directLog(
ns,
...args.map((arg) => {
if (typeof arg === 'object') {
return inspect(arg, {
depth: Infinity,
colors: true,
compact: 8,
});
}
return arg;
})
);
// prettier-ignore
directLog(ns, ...args.map(arg => {
if (typeof arg === 'object') {
return inspect(arg, {
depth: Infinity,
colors: true,
compact: 8,
});
}
return arg;
}));
return;
}
if (type === 'relay') {