Added code to use MFM to colorize Notes based on config.json file.
This commit is contained in:
L̷O̷N̷D̷O̷N̷少林 2025-01-21 08:30:57 -05:00 committed by GitHub
parent 9db8d260eb
commit c34fb10c4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -39,11 +39,20 @@ export default class extends Module {
];
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: 季節に応じたセリフ
this.ai.post({
text: typeof note === 'function' ? note() : note
text: noteText
//this.ai.post({
// text: typeof note === 'function' ? note() : note
});
}
}