Fixed a problem cause by KillerBoss
This commit is contained in:
parent
5b2ebd3e90
commit
a7c0bee5cf
1 changed files with 2 additions and 2 deletions
|
@ -71,12 +71,12 @@ export default class cout {
|
||||||
}
|
}
|
||||||
if (this.save) {
|
if (this.save) {
|
||||||
string.split("\n").forEach((line) => {
|
string.split("\n").forEach((line) => {
|
||||||
log(`${emoji}[${time} ${type}] | ${line}`);
|
log(`${this.emoji ? emoji : ''}[${time} ${type}] | ${line}`);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
stringc.split("\n").forEach((line) => {
|
stringc.split("\n").forEach((line) => {
|
||||||
console.log(`${emojic}[${timec} ${typec}] | ${line}`);
|
console.log(`${this.emoji ? emojic : ''}[${timec} ${typec}] | ${line}`);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue