mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
index.ts
Added code to use MFM to colorize Notes based on config.json file.
This commit is contained in:
parent
9db8d260eb
commit
c34fb10c4c
1 changed files with 11 additions and 2 deletions
|
@ -39,11 +39,20 @@ export default class extends Module {
|
||||||
];
|
];
|
||||||
|
|
||||||
const note = notes[Math.floor(Math.random() * notes.length)];
|
const note = notes[Math.floor(Math.random() * notes.length)];
|
||||||
|
let noteText = typeof note === 'function' ? note() : note;
|
||||||
|
|
||||||
|
// Add red text functionality based on config.json
|
||||||
|
if (config.colorNotes) {
|
||||||
|
noteText = '$[fg.red ' + noteText + ']';
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: 季節に応じたセリフ
|
// TODO: 季節に応じたセリフ
|
||||||
|
|
||||||
this.ai.post({
|
this.ai.post({
|
||||||
text: typeof note === 'function' ? note() : note
|
text: noteText
|
||||||
|
|
||||||
|
//this.ai.post({
|
||||||
|
// text: typeof note === 'function' ? note() : note
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue