mirror of
https://github.com/syuilo/ai.git
synced 2024-11-12 17:08:00 +00:00
Update serif
This commit is contained in:
parent
13481451f3
commit
fb668dc0f8
|
@ -36,7 +36,7 @@ export default class FortuneModule implements IModule {
|
|||
const rng = seedrandom(seed);
|
||||
const omikuji = omikujis[Math.floor(rng() * omikujis.length)];
|
||||
const item = items[Math.floor(rng() * items.length)];
|
||||
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw);
|
||||
msg.reply(`**${omikuji}🎉**\nラッキーアイテム: ${item}`, serifs.fortune.cw(msg.friend.name));
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
|
|
|
@ -220,7 +220,7 @@ export default {
|
|||
* 占い
|
||||
*/
|
||||
fortune: {
|
||||
cw: '私が今日のあなたの運勢を占いました...',
|
||||
cw: name => name ? `私が今日の${name}の運勢を占いました...` : '私が今日のあなたの運勢を占いました...',
|
||||
},
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue