Merge pull request #26 from n1lsqn/fix/console

fix: console.logの削除
This commit is contained in:
n1lsqn 2023-11-14 16:13:29 +09:00 committed by GitHub
commit 30d7b74b90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -63,37 +63,31 @@ export default class extends Module {
@autobind
private setName(msg: Message): boolean {
if (!msg.text) {
console.error("Message text is empty or undefined.");
return false;
}
if (!msg.text.includes('って呼んで')) {
console.error("Message text does not include 'って呼んで'.");
return false;
return false;
}
if (msg.text.startsWith('って呼んで')) {
console.error("Message text starts with 'って呼んで'.");
return false;
}
const matchResult = msg.text.match(/^(.+?)って呼んで/);
if (!matchResult) {
console.error("Name not found in the message text.");
return false;
}
const name = matchResult[1];
if (name.length > 30) {
console.error("Name length exceeds 10 characters.");
msg.reply(serifs.core.tooLong);
return true;
}
if (safeForInterpolate(name)) {
console.error("Invalid name.");
msg.reply(serifs.core.invalidName);
return true;
}