Lots of small changes

This commit is contained in:
lilyissillyyy
2025-08-26 22:30:54 -04:00
parent 5048fbe243
commit bda18aa3ae
11 changed files with 183 additions and 169 deletions
+2
View File
@@ -12,6 +12,8 @@ module.exports = class OffspringCommand extends Command {
}
run(msg) {
const chance = Math.floor(Math.random() * 5500);
if (!chance) return msg.say('It\'s a... Wait, what is it?');
return msg.say(`It's a ${genders[Math.floor(Math.random() * genders.length)]}!`);
}
};